v1

latestSwagger 2.02026-07-14129254.9 KB
ASPSPs

Get list of ASPSPs

Get the list of all active ASPSPs supported by the Open Banking Connect platform at this time with possibility to filter by id, name or country. This list is updated regularly as new ASPSPs are connected.

post/payments/aspsps

Request body

countrystring

Filter by country code (ISO 3166 Alpha 2), exact match pattern

idstring

Filter by internal id of ASPSP, exact match pattern

namestring

Filter by name of ASPSP, contains pattern

returnAdditionalDataAdditionalDataField[]

Specifies what additional fields for ASPSP object should be included in response

Example request

{
  "country": "GB",
  "requestInfo": {
    "xRequestId": "123e4567-e89b-12d3-a456-426655440000"
  }
}

Response

Success

Example response

{
  "aspsps": [
    {
      "aspspServices": [
        "AIS",
        "PIS",
        "COF"
      ],
      "capabilities": {
        "delete_ais_consent": true,
        "obtain_ais_consent": true,
        "retrieve_accounts": true
      },
      "country": "UK",
      "id": "123e4567-e89b-12d3-a456-426655440000",
      "logo": {
        "logoUrl": "https://openbanking.mastercard.eu/live/imgs/16f0f635-9d94-4976-b49b-584ca231c232.svg"
      },
      "name": "Wood bank",
      "profile": "CMA9"
    }
  ],
  "originalRequestInfo": {
    "xRequestId": "444e4567-e55b-12d3-a456-426655448888"
  }
}
All 12 operations