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.Kjowc65MNBw6zQdXVh1I_cu9D8F1RSNg7__RC_H8l2R6nnIN21EqRH7MbjqWkSgk9gkTNZIC3SM1x6rIvf4OOuFr_jlrcuwWWRKyPw9Hem1ExD8_0V43VrREsUn6fh1uZmVd2voG2lCIKGWi8SqPHCdGW8pcyqQ5zqG831cUiz-txRJ8E11Xq6o8lttO4V7qbAw5md979mScY-Wgov2fL7t6iXPLIbBc6ym0u9VnZu7tMMtE-1cZAA_1hG6HjOll_VFGKjh0vicbTi_NLMoDbeTPq9M4nG02eQnYLi77_Jezp2v0OpiDRk7bu5T6Njr75G1sDMdXuY8trCRigHOhDQ' \
-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.Fc5st7Tid38zW_sXJDBOddWksEjYTlwdUsnmRKLSbjOsFVtJHLWf_9D_H4GfsCVWcQDg0yoix6ytBM4WL8qMLVUH33fM2OOgB7yT1_Oe8FLpkQ9FIpLuH_1Hem80435-cR761FGcdlKtELKPhbH1LdwHSFLs4jq85RC4FeH0lRzW7j4ZqZbl2yR0MKCmn5WeMa-ZEuZTU9ekPe_k15JO-1Lr50UOC-6AfYgtZhYYTEElMUqegP_SKzMw8_AhtZvT_BnWw4_dGsXMaYc5ZFkl6DEKEdWoa8Whwsh6VLjt7EK74-6liue15bNU7NylmEzO99A5Gac5iftCW6EFHbXxZg' \
-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. |
×