> ## Documentation Index
> Fetch the complete documentation index at: https://docs-sms.mifumolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Notification Settings

Update user notification preferences.

<ParamField body="email_notifications" type="boolean">
  Enable/disable email notifications
</ParamField>

<ParamField body="sms_notifications" type="boolean">
  Enable/disable SMS notifications
</ParamField>

## Request Example

<RequestExample>
  ```json theme={null}
  {
    "email_notifications": true,
    "sms_notifications": false
  }
  ```
</RequestExample>

## Success Response (200)

<ResponseField name="message" type="string">
  Success message
</ResponseField>

<ResponseField name="email_notifications" type="boolean">
  Email notifications status
</ResponseField>

<ResponseField name="sms_notifications" type="boolean">
  SMS notifications status
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "message": "Notification settings updated successfully",
    "email_notifications": true,
    "sms_notifications": false
  }
  ```
</ResponseExample>
