v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-3196247792.5 KB
SCA association management

Get a list of devices associated with an entity

Returns a paginated list of the SCA devices associated with a specific entity.

get/scaAssociations

Query parameters

entityType'accountHolder' | 'legalEntity' | 'paymentInstrument' required

The type of entity you want to retrieve a list of associations for.

Possible values: accountHolder, legalEntity or paymentInstrument.

entityIdstring required

The unique identifier of the entity.

pageSizeinteger required

The number of items to have on a page.

Default: 5.

pageNumberinteger required

The index of the page to retrieve. The index of the first page is 0 (zero).

Default: 0.

Response

OK - The request has succeeded.

itemsTotalinteger required

The total number of items available.

pagesTotalinteger required

The total number of pages available.

Example response

{
  "data": [
    {
      "scaDeviceId": "BSDR11111111111A1AAA1AAAAA1AA1"
    }
  ],
  "itemsTotal": 1,
  "pagesTotal": 1
}