Retrieve all active application grants for the user. A logto-verification-id in header is required for checking grant details.
GET
/api/my-account/grants
curl \
--request GET 'https://[tenant_id].logto.app/api/my-account/grants' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"grants": [
{
"id": "string",
"payload": {
"exp": 42.0,
"iat": 42.0,
"jti": "string",
"kind": "string",
"clientId": "string",
"accountId": "string"
},
"expiresAt": 42.0
}
]
}