cURL
curl --request GET \ --url https://api.example.com/v1/core/auth/tokens \ --header 'Authorization: Bearer <token>'
{ "data": [ { "tokenId": "<string>", "tokenName": "<string>", "organizationId": "<string>", "authorizedOrgGroupId": "<string>", "parentOrgGroupTokenId": "<string>", "createdAt": "<string>" } ], "cursor": "<string>" }
List all tokens for a given org. Can be used with org-scoped or org-group token. If org-group token, must pass selector.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List all tokens for a given org.
Show child attributes
The ID of the org-group that this token is authorized to act as. Default null.
The ID of the org-group-token that created this org-scoped token. Will be null for tokens created through the UI.
Opaque cursor for pagination