get_ais_providers
GET  -- Gets banks available for AIS
This endpoint returns the list of banks available for AIS.
| Search argument | Description | Max size | Mandatory |
|---|---|---|---|
| country | Country | String - 2 | NO |
| limit * | field.limit.label is missing | Integer - 3 | NO |
| page ** | field.page.label is missing | Integer - 3 | NO |
* The default limit value is 150
** The default page value is 1
** The default page value is 1
Request
GET /xxxx/get_ais_providers?country=FR&limit=100&page1 HTTP/1.1
Host: xxx.xxxxxxxx.fr
Authorization: Basic JQheySHkalSNuakkmSmm==
Content-Type: application/json
Accept: application/json
Host: xxx.xxxxxxxx.fr
Authorization: Basic JQheySHkalSNuakkmSmm==
Content-Type: application/json
Accept: application/json
If bank list was successfully fetched
Response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Type: application/json
{
"datas" : [
{
"id": "4WSJAZP145950TXXXXXXXXXXXX",
"bic": "SOGEXXXX",
"name": "Nom de la banque",
"branchName": "Nom de la branche (ex: Ile de France)",
"baseUrl": "https://particuliers.sg.fr",
"logoUrl": "http://url/ws/ais/v1/bank-logo/{id}"
},
{
"id": "TUGKBD5535423TXXXXXXXXXXXX",
"bic": "BOURSXXXX",
"name": "Boursorama banque",
"branchName": "",
"baseUrl": "https://boursorama.fr",
"logoUrl": "http://url/ws/ais/v1/bank-logo/{id}"
}
],
"page": 1,
"limit": 2,
"total_datas": 130
}
If bank list fetching failed
Response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Type: application/json
{
"error" : "Message d'erreur"
}
| Argument | Description |
|---|---|
| error | Message d'erreur |