List all supported institutions
This document helps to get the list of institutions that is supported by Brick.
Our new version of APIs(v2) is callback-based APIs, So if you have not set up a callback URL till now, Please set it from brick dashboard.
You can use this JWT/public access token to view the list of institutions currently supported by Brick or jump to Step 3 directly to try the Brick Front End Widget and connect a Financial institution account to view its data.
curl --request GET \
--url https://sandbox.onebrick.io/v2/data/institution/list \
--header 'Accept: application/json' \
--header 'public_access_token: Bearer public_access_token'
Where [JWT-public-access-token] is the public access token/JWT generated in the previous step which needs to be passed as the Bearer token in the headers.
The API responds with the institution's list currently supported by Brick.
{
"status": 200,
"data": {
"message": "We are able to find a list of institutions",
"count": 2,
"institution_list": [
{
"id": 2,
"name": "KlikBCA Internet Banking",
"institution_code": "CENAIDJA",
"country_code": "ID",
"country_name": "Indonesia",
"primary_color": "#0d3dc8",
"created_at": null,
"updated_at": "2021-08-03T12:38:55.000+00:00",
"channels": null,
"is_ocr_active": false,
"automatic_verification": true,
"pdf_verification": true,
"passbook_verification": true,
"institution_type": "Internet Banking"
},
{
"id": 3,
"name": "Livin' by Mandiri",
"institution_code": "BMRIIDJA",
"country_code": "ID",
"country_name": "Indonesia",
"primary_color": "#2f83d7",
"created_at": null,
"updated_at": "2021-08-03T12:38:55.000+00:00",
"channels": null,
"is_ocr_active": false,
"automatic_verification": true,
"pdf_verification": true,
"passbook_verification": true,
"institution_type": "Internet Banking"
}
]
},
"metadata": {
"source": "{{API/Widget/Dashboard/SDK/Portal}}",
"entity": "Data"
},
"error": null
}
Updated 9 months ago