Retrieve Accounts

Retrieve the list of accounts available to your organisation.

GET /api/account

For the full request and response schema, see Retrieve Accounts.

Example request

GET https://staging-api.vitessepsp.com/api/account
Authorization: Bearer <access_token>

Example response

Each returned account includes:

  • AccountId – unique identifier for the account
  • AccountName – display name
  • Links – endpoints for retrieving account entries
[
  {
    "AccountId": 708,
    "AccountName": "Claims Account USD",
    "MerchantName": "Example Ltd",
    "Links": [
      {
        "Href": "https://staging-api.vitessepsp.com/api/account/708",
        "Rel": "related",
        "Title": "Account Entries"
      }
    ]
  }
]