cURL
curl --request GET \ --url https://api.example.com/v1/core/oauth/apps/{clientId}/access-token/{tokenId} \ --header 'Authorization: Bearer <token>'
{ "data": { "accessTokenId": "<string>", "oAuthAppId": "<string>", "userId": "<string>", "audience": "<string>", "subject": "<string>", "scope": "read", "expiresAt": "2023-11-07T05:31:56Z", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "revokedAt": "2023-11-07T05:31:56Z" }, "cursor": "<string>", "pageSize": 123, "limit": 123, "total": 123, "hasNextPage": true }
This endpoint returns a specific OAuth access token by id.Note: this endpoint is only available to select customers at this time.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Get a specific OAuth access token by id.
Show child attributes