My Account API
cURL
curl --request GET \ --url https://{host}/me/v1/consents \ --header 'Authorization: Bearer <token>'
{ "consents": [ { "id": "cns_abc123def456", "client_id": "<string>", "created_at": "2023-11-07T05:31:56Z", "expires_at": "2023-11-07T05:31:56Z", "requested_details": { "binding_message": "<string>", "audience": "<string>", "scope": [ "<string>" ] } } ] }
Retrieve the list of consents for the authenticated user.
Bearer and DPoP tokens are supported depending on the API configuration
Successfully retrieved consents
List of consents for the authenticated user.
Show child attributes
Was this page helpful?