> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/update-call-token-for-user-profile.md).

# Update Call Token for User Profile

The `PATCH /user/profile/call-token/`  endpoint allows updating a user's call token.

***

**Parameters**

| **Parameter** | **Location** | **Type** | **Description**                                      |
| ------------- | ------------ | -------- | ---------------------------------------------------- |
| `data`        | Body         | Object   | The request payload containing the new `call_token`. |

***

**Request Body**

| **Field**    | **Type** | **Description**         | **Constraints**           |
| ------------ | -------- | ----------------------- | ------------------------- |
| `call_token` | String   | The updated call token. | Max length: 255, nullable |

**Example Request Body**

```json
{
  "call_token": "abc12345"
}
```

***

**Responses**

| **Code** | **Description**                  | **Response Model** |
| -------- | -------------------------------- | ------------------ |
| `200`    | Call token updated successfully. | `ProfileCallToken` |

**Example Response**

```json
{
  "call_token": "abc12345"
}
```
