Update Call Token for User Profile
PATCH /user/profile/call-token/
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
{
"call_token": "abc12345"
}
Responses
Code
Description
Response Model
200
Call token updated successfully.
ProfileCallToken
Example Response
{
"call_token": "abc12345"
}
Last updated