v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Users

Get accounts for your user

Returns a list of accounts for your user.

get/v2/users/me/accounts

Query parameters

name_containsstring

Filter accounts by name.

page_numberinteger

The page of results returned within the response.

page_sizeinteger

The amount of results returned within the response.

Response

OK

firststring required

The url with parameters of the first page

nextstring

The url with parameters of the next page, null if there are no more pages

prevstring

The url with parameters of the previous page, null if current page_number is 1

selfstring

The url with parameters of the current page

total_countinteger nullable

Total number of items.

Example response

{
  "accounts": [
    {
      "client_identifier": "00000000-0000-0000-0000-000000000000",
      "identifier": "00000000-0000-0000-0000-000000000000",
      "name": "A Bank Retail",
      "roles": [
        {
          "assigned_at": "2023-01-01T10:10:10.000Z",
          "name": "Admin"
        }
      ]
    }
  ],
  "total_count": 60
}