Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Panel
bgColor#79E2F2

Title: Get List of All Financial Institution by Country Code

Panel
bgColor#F4F5F7

Description: This endpoint provides list of all financial institutions available for a country code

Panel
bgColor#F4F5F7

URL: https://laas.leatherback.co/payout/Disbursement/Payout/BankCodes/:countryIso2

...

Panel
bgColor#F4F5F7

HTTP Method: GET

Panel
bgColor#F4F5F7

Headers: authorization Set value to X-API: SECRET_KEY

string

...

 

Element

Description

Type

Example

Required

countryIso2

Country code of the currency

String | iso2

 

 

to be pass as path variable

NG

 

Available countryIso

 

“NG” -> Nigeria Banks

“ET” -> Ethiopia Banks

“PK” -> Pakistan Banks

Yes

Panel
bgColor#FFC400

Sample Response Payloads

countryIso2:
"NG" -> Nigeria

"ET" -> Ethopia

"IN" -> Indian

...

code : 200
Expand
titleSample Response
(Success)
Code Block
languagejs
{
  "value": [
    {
      "
isSuccess
code": 
true
"110005",
      "
error
name": "3LINE CARD MANAGEMENT LIMITED"
    },
    {
      "
message
code": "120001",
      "
responseCode
name": 
null,
"9 payment service Bank"
    },
    {
      "
type
code": 
null
"050005",
      "
title
name":
null,
 "AAA FINANCE"
    },
   ...additional items
  ],
  "isSuccess": true,
  "
status
error": 
202
"",
  "message": "",
  "
detail
responseCode": null,
  "type": null,
  "
instance
title": null,
  "status": 202,
  "
extensions
detail": 
{}
null,
  "instance": null,
  "extensions": {}

...

panelIconIdatlassian-info
panelIcon:info:
bgColor#DEEBFF

}
Expand
titleSample Response (If no result for the passed country iso)
Code Block
languagejs
{
  "value": [],
  "isSuccess": true,
  "error": "",
  "message": "",
  "responseCode": null,
  "type": null,
  "title": null,
  "status": 202,
  "detail": null,
  "instance": null,
  "extensions": {}
}

...