> ## 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 Preferences

Update user preferences.

<ParamField body="timezone" type="string">
  User timezone
</ParamField>

## Request Example

<RequestExample>
  ```json theme={null}
  {
    "timezone": "Africa/Dar_es_Salaam"
  }
  ```
</RequestExample>

## Success Response (200)

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

<ResponseField name="timezone" type="string">
  Updated timezone
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "message": "Preferences updated successfully",
    "timezone": "Africa/Dar_es_Salaam"
  }
  ```
</ResponseExample>
