> 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-user-profile-call-token.md).

# Update User Profile Call Token

The `PUT /user/profile/call-token/` endpoint allows a user to update their call token.

***

**Request Parameters**

| **Name** | **Type** | **Location** | **Description**                  |
| -------- | -------- | ------------ | -------------------------------- |
| `data`   | Object   | Body         | Contains the updated call token. |

***

**Request Body Fields**

| **Field**    | **Type** | **Description**           | **Constraints**                |
| ------------ | -------- | ------------------------- | ------------------------------ |
| `call_token` | String   | The call token to update. | Maximum length: 255. Nullable. |

***

**Responses**

| **Code** | **Description**                  |
| -------- | -------------------------------- |
| 200      | Call token successfully updated. |

***

**Example Request Body**

```json
{  
  "call_token": "abcd1234efgh5678"  
}  
```

***

**Example Response**

**Code:** 200\
**Content:**

```json
{  
  "call_token": "abcd1234efgh5678"  
}  
```
