Update User Profile Call Token

PUT /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

{  
  "call_token": "abcd1234efgh5678"  
}  

Example Response

Code: 200 Content:

{  
  "call_token": "abcd1234efgh5678"  
}  

Last updated