Retrieve Call Token

GET /user/profile/call-token/

The GET /user/profile/call-token/ endpoint retrieves the call token associated with the user's profile. The call token is used for initiating or managing calls.


Parameters

This endpoint does not require any parameters.


Responses

Code

Description

200

Successfully retrieved the call token.

Example Response

{
  "call_token": "sample-call-token-123"
}

Response Model

Field

Type

Description

Constraints

call_token

String

The call token.

Max length: 255, nullable.

Last updated