OAuth 2.0 token endpoint for authentication.
Verify the status of a token
Response Codes:
200 OK: Token is valid.
401 Unauthorized: Token is invalid or expired.
If the token has expired, you need to regenerate the bearer token again.
Bearer authentication header of the form Bearer <token>.
Bearer <token>
Token is valid.
No content
Token is invalid or expired.
Last updated 16 days ago
curl -X GET \ "https://api.catapa.com/v1/oauth-clients/validate-access-token" \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ -H "Tenant: your-tenant-id"