latestOpenAPI 3.0.12026-08-108798310.5 KB

fa1a72b9ecec

API User Identities

Get current token identity

This endpoint returns the permissions you have access to, the time until the token expires and the account holder's unique identifier.

get/api/v2/identity/token

Response

Successful operation

accountHolderUidstring uuid
expiresAtstring date-time
expiresInSecondsinteger
scopesstring[]

The scopes which this token has permission to use e.g. balance:read

authenticatedboolean
applicationUserUidstring uuid
consentExpiresAtstring date-time
customerUidstring uuid

Deprecated, use accountHolderUid instead

Example response

{
  "accountHolderUid": "aabbaabb-aabb-aabb-aabb-aabbaabbaabb",
  "expiresInSeconds": 123,
  "applicationUserUid": "aabbaabb-aabb-aabb-aabb-aabbaabbaabb",
  "customerUid": "aabbaabb-aabb-aabb-aabb-aabbaabbaabb"
}