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
}

Changes

Changed in 2 of the 51 revisions of this API.12

  • v2a4fab1c7333b11See the full diff
    • added the new legalEntity enum value to the data/items/entityType response property for the response status 200

      response-property-enum-value-added

    • added the new enum value legalEntity to the query request parameter entityType

      request-parameter-enum-value-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • endpoint added

      endpoint-added