Validate Token
Validate Token
Validate whether the current access_token is still active. Pass the Bearer token in the Authorization header.
GET
Validate Token
At any point, if you want to validate if the
access_token is valid or not, then you can call the endpoint as outlined on this page. The client application will pass the bearer token in the header. The response to the request will be as outlined on the right-hand side panel.
Response Schema
| **Property ** | ** Type ** | ** Description** |
|---|---|---|
| access_token | string | Newly generated access token for authenticated API calls. |
| token_type | string | Always "bearer". |
| expires_in | number | Token validity duration in seconds. |
| access_token_expiry | number | Epoch timestamp (ms) when the access token will expire. |
| refresh_token_expiry | number | Epoch timestamp (ms) when the refresh token will expire. |
Authorizations
Authorization: Bearer <access_token>
Response
Token is valid.
