ASPSPs
Open Banking Providers
Used by TPP for obtaining the list of ASPSPs which support OpenBanking standard.
CURL
![]()
curl -i \
-H "Content-Type: application/json" \
-H "Client-Id: client_application_identifier" \
-H "x-fapi-interaction-id: some-uuid" \
-d 'eyJhbGciOiJQUzI1NiIsImtpZCI6InRlc3QifQ.e30.sWqaeXdTSq6ZNITSa36rxY5RdzYEFI2RH0v5Hwrdxvni_gbfnbbq2bJygawoJwHnvIM6cczSmxIaIGgeiJdkMqnGsNAQxDmi7HoRleZ1TPcGpfrS43Z9sSFGTbtj1HEeqvBNQxN1QkrLCBaUayKTbg-K0hL4kUtO7My4dY87vf9We6ISTFnC-UhLQ_cvnHZB6xoG_i7xbPlxaZHMK9bBJX-okwoux8hIGsvXFBoPparOU2k-puPUItsvPo_4SMh25t2kVQOl2PgGvRyaNdX2o63jajgsyuzFfpJwoajIDmgUrcKAmXoJCHjTJ-dK8rz7JiW--Ub4XRbDyXvqOp--VQ' \
-X GET "/api/open-banking/v3.1/aspsps"
Example of response
![]()
{"Data":[{"AspspCode":"ob_demobank","Name":"Open Banking Demobank","Status":"live","LogoUrl":"https://priora.saltedge.com/images/demobank_logo.svg","CountryCode":"XF","SupportedFlows":["AIS","PIS"],"SandboxCredentials":[{"AuthorisationType":"oauth","RequiredFields":[{"Code":"required_field","Example":"reqField"}],"MfaFields":[{"Code":"mfa_field","Example":"mfaField"}]}],"PisParams":{"ObPaymentsProducts":["domestic-payments","international-payments"],"DomesticInstruments":["UK.OBIE.BACS","UK.OBIE.CHAPS","UK.OBIE.FPS"],"InternationalInstruments":["UK.OBIE.SWIFT"],"CreditorIdentificationSchemes":["UK.OBIE.SortCodeAccountNumber","UK.OBIE.IBAN","UK.OBIE.PAN","UK.OBIE.BBAN"]}}]}
Request
GET
/api/open-banking/v3.1/aspsps
Headers
| Header | Type | Description |
|---|---|---|
Accept
|
string, optional | Media type that is acceptable for the response. Default value: application/json |
x-fapi-interaction-id
|
string, optional | An RFC4122 UID used as a correlation Id. |
Client-Id
|
string, required | Client application identifier. Can raise: ResourceNotFound |
Request parameters
Response headers
| Header | Type | Description |
|---|---|---|
Content-Type
|
string, required | The media type of the body of the request. |
Retry-After
|
integer, optional | Amount of time in seconds after which Salt Edge PSD2 Compliance Solution resends the previously failed request. |
Response
Upon successful request, 200 status code will be returned. See ‘Related Errors’ table for other possibilities.
Related Errors
| Class | Code | Description |
|---|---|---|
| ResourceNotFound | 400 | Specified resource doesn't exist. |
×
Open Banking Provider's Supported Permissions
Used by TPP for obtaining the list of ASPSP's supported permissions.
CURL
![]()
curl -i \
-H "Content-Type: application/json" \
-H "Client-Id: client_application_identifier" \
-H "x-fapi-interaction-id: some-uuid" \
-d 'eyJhbGciOiJQUzI1NiIsImtpZCI6InRlc3QifQ.e30.eIUqZCeP0EuB_LmPuefezx7rMUjSPtjha2UfNkwvTBJdGDTpa3km6NA1w_HJPuhgNT6bSAPw9fEL5ff38eXlLBdaSl5idxVXmvRYDB61Wx0sR5hDLt4_pmaT7GUtIWQ95yRWdRSrhM9nSU_eFQX2ohuAoFswnnmylko7STtGZopG6VG4qro0LyuOJnqTQ2U1jAi2ABds9J0E7G24cjqEIqhVspvXEG6EG-duzRekjOBh7ZPsCy4WubGYPM4OuufYYeARC00AqH3RqCLr3u1r-c8_f1BMhe82xmwHOxXnoPtEolLEJGMFa2bccbjmu2euIjp_MAP9gx7ldDp-cBe0Ww' \
-X GET "/api/open-banking/v3.1/aspsps/:provider_code/permissions"
Example of response
![]()
{"Data":[{"SupportedPermissions":["ReadAccountsBasic","ReadAccountsDetail","ReadBalances","ReadTransactionsBasic","ReadTransactionsCredits","ReadTransactionsDebits","ReadTransactionsDetail","ReadBeneficiariesDetail","ReadBeneficiariesBasic","ReadDirectDebits","ReadStandingOrdersDetail","ReadStandingOrdersBasic","ReadParty","ReadScheduledPaymentsBasic","ReadScheduledPaymentsDetail"]}]}
Request
GET
/api/open-banking/v3.1/aspsps/:provider_code/permissions
Headers
| Header | Type | Description |
|---|---|---|
Accept
|
string, optional | Media type that is acceptable for the response. Default value: application/json |
x-fapi-interaction-id
|
string, optional | An RFC4122 UID used as a correlation Id. |
Client-Id
|
string, required | Client application identifier in Salt Edge PSD2 Compliance. Should be used to get public key for Authorization header validation. Can raise: ResourceNotFound |
Request parameters
Response headers
| Header | Type | Description |
|---|---|---|
Content-Type
|
string, required | The media type of the body of the request. |
Retry-After
|
integer, optional | Amount of time in seconds after which Salt Edge PSD2 Compliance Solution resends the previously failed request. |
Response
Upon successful request, 200 status code will be returned. See ‘Related Errors’ table for other possibilities.
Related Errors
| Class | Code | Description |
|---|---|---|
| ResourceNotFound | 400 | Specified resource doesn't exist. |
×