Authorizations
API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).
Response
200 - application/json
Retrieve Auth Token
curl --request GET \
--url https://{appid}.api-{region}.cometchat.io/v3/users/{uid}/auth_tokens/{authToken} \
--header 'apikey: <api-key>'{
"data": {
"uid": "superhero1",
"authToken": "superhero1_1630306819c3027ce530b2367f3c97b4106f0cb8",
"createdAt": 1630306819
}
}Retrieves details of an auth token for the specified UID andauth token.
curl --request GET \
--url https://{appid}.api-{region}.cometchat.io/v3/users/{uid}/auth_tokens/{authToken} \
--header 'apikey: <api-key>'{
"data": {
"uid": "superhero1",
"authToken": "superhero1_1630306819c3027ce530b2367f3c97b4106f0cb8",
"createdAt": 1630306819
}
}API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).
Retrieve Auth Token
Was this page helpful?