PUT
/
users
/
{uid}
/
auth_tokens
/
{authToken}
Update
curl --request PUT \
  --url https://{appid}.api-{region}.cometchat.io/v3/users/{uid}/auth_tokens/{authToken} \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '{
  "platform": "<string>",
  "userAgent": "<string>",
  "appInfo": {}
}'
{
  "data": {
    "uid": "superhero1",
    "authToken": "superhero1_1630306819c3027ce530b2367f3c97b4106f0cb8",
    "createdAt": 1630306819
  }
}

Authorizations

apikey
string
header
required

API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).

Path Parameters

uid
string
required

An UID of a user.

authToken
string
required

An auth token of a user.

Body

application/json
platform
string

The platform on which the auth token is being used.

userAgent
string

userAgent from which the auth token is used.

appInfo
object

JSON data containing app information.

Response

200 - application/json

Updated Auth Token

data
object