v1

latestOpenAPI 3.1.0Proprietary2026-07-244223105.2 KB
Users

Authorization token

Create an user authorization token to create connect sessions and fetch banking data for this user

post/v3/aggregation/authorization/token

Request body

OR

Example request

{
  "user_uuid": "de305d54-75b4-431b-adb2-eb6b9e546014"
}

Response

Token

access_tokenstring required

Authorization token that can be used as authoration bearer token

expires_atstring date-time required

Expiration date of token

Example response

{
  "access_token": "0000000000000000000000000000000000000000-0000-0000-0000-0000-000000000000",
  "expires_at": "2024-10-16T07:59:11.785Z",
  "user": {
    "uuid": "de305d54-75b4-431b-adb2-eb6b9e546014",
    "external_user_id": "user-001"
  }
}