v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Customers actions

Verify auth token

Method verifies authentication token created by a specified application. There is the unique ID of the customer as a response. ⚠️ Endpoint method is available only in the Enterprise interface.

post/customers/actions/verify-auth-token

Request body

application_idstring required

ID of the destination external application where the customer is being verified. Provide the destination external application ID, not the token-issuing external application ID. Need a destination external application ID? Please contact your CareCloud administrator.

tokenstring required

Authentication token

token_request_idstring required

The parameter specifies the request that caused the token to be created. If two customers generated an authentication token at the same time and in the same application, the token_request_id parameter represents additional verification to identify the correct token.

Example request

{
  "application_id": "82de12eb8b138791e678fd11c3",
  "token": "V952TL",
  "token_request_id": "702baa4a40a57694831321e5d02605d46c189369126ae43a81030790ea188af87e49578a"
}

Response

OK

Example response

{
  "data": {
    "customer_id": "8ea2591121e636086a4a9c0992"
  }
}