v1

latestOpenAPI 3.1.02026-07-146079.8 KB

Get Token Details

This API lets you get the details for your access token. You can use this API to track the token expiry time and call the Refresh token API before the token expires to generate a new access token.

get/oauth/token/info

Headers

Authorizationstring

Access token obtained from Get Access token API

Response

200

resource_owner_idinteger
scopestring[]
expires_ininteger
created_atinteger

Example response

{
  "resource_owner_id": 1,
  "scope": [
    "locations"
  ],
  "expires_in": 2203,
  "application": {
    "uid": "a1c5e5d6d160305477537a660a5a4d0c59f9286fa9daaf015557238271e98d41"
  },
  "created_at": 1665173715
}