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.qjHMqvFOHRiPNw_yUOg8dFSinjKMwC4Vnu4KUanf8JI58UEmQz1c0htciPO1srwidPCctHe6_JjgjqNge_989j_mGyQTwRXfWdFO4LacK9D2mNTyFiAZERzWfY5JcZwHWcLcDlZ9wJaN5Qr2HC9C_U5jFH1xim2yr8jwaC9rRVdGxK3z-6V1tSapG4O9eq_kk_j_hhZdytGhS4lfUqj7C4-X2tHsvMgXaK_uEn6WFwVYQJN4_Ibc3D7XnnZyULYnMbzG2G-9b9lPyEVOXCbo2nfKVGSYh8T1h0Vx-W3Na7gZ8aT1-g7boZCbxdhKTkb-nz7b2HFZdZ0OQOeiuXUZXQ' \
-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.pG6AsNNM8u6pMdy3BjXqlm2j3uoNOgDJgzI4y7jSTpNMOsykC7eLG-R2h87lhiCMatdPIdEjAlgMV50KNbp6kYP1xGz8Ir2Iq5fxM0f5BUU4T7rQC1VsbVcGoUyrZqLZROmZ_k0WssorhxUgsP_NCjDcVlJwqMMCIVCgvFhGTLZMQwoMmYH5KpkdDfASNPOaQjqYT05gkwzD4XKHHisZCGvBDeV3cCxmgalWARKVjAVgE3oAaTzE932fHzaX1uLrYFymEYQ1IAaxSbkryS90N6Rrzl90omplzqQuWdVcAfsMklrI3Set58Z-3YTL9RfeLYOHb4NUU0zuvL6YxHB9mw' \
-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. |
×