Search Bank Codes
Before creating a payment, check the bank code
Search Bank Codes
GET
https://api.stage.localpayment.com/api/resources/banks
Check the bank code required for LP while creating a PayIn.
Path Parameters
Name
Type
Description
offset
String
A number indicating the number of results to skip before starting to return bank codes. Useful for paginating through a large list of results.
code
String
Filter the results by a specific bank code. Use this when you want to retrieve details for a known bank code.
name
String
Filter the list of bank codes by name. Returns all banks whose names contain the specified string
Headers
Name
Type
Description
Authorization*
String
Mandatory. JWT token in format Bearer eyj0...
. For more information about authentication, please refer to Authentication.
Example request
curl --request GET \
--url 'https://api.stage.localpayment.com/api/resources/banks?CountryISOCode3=ARG' \
--header 'Authorization: Bearer <your_access_token>' \
--header 'accept: application/json'
Example response
{
"data": [
{
"id": 6,
"code": "007",
"bankType": "Bank",
"name": "BANCO DE GALICIA Y BUENOS AIRES S.A.U.",
"swift": "GABAARBA",
"countryId": 168,
"countryISOCode3": "ARG",
"countryDesc": "Argentina",
"additionalInformation": "",
"checkingRegex": "/^[0-9]{22}$/",
"savingRegex": "/^[0-9]{22}$/",
"branchRegex": null,
"isEnabled": true,
"transactionTypes": [
"PayIn",
"PayOut"
],
"version": 0,
"createdAt": "0001-01-01T00:00:00",
"createdBy": null,
"modifiedAt": null,
"modifiedBy": null
},
{
"id": 72,
"code": "147",
"bankType": "Bank",
"name": "BIBANK S.A.",
"swift": "BIINARBA",
"countryId": 168,
"countryISOCode3": "ARG",
"countryDesc": "Argentina",
"additionalInformation": "",
"checkingRegex": "/^[0-9]{22}$/",
"savingRegex": "/^[0-9]{22}$/",
"branchRegex": null,
"isEnabled": true,
"transactionTypes": [
"PayIn",
"PayOut"
],
"version": 0,
"createdAt": "0001-01-01T00:00:00",
"createdBy": null,
"modifiedAt": null,
"modifiedBy": null
},
{
"id": 7,
"code": "011",
"bankType": "Bank",
"name": "BANCO DE LA NACION ARGENTINA",
"swift": "NACNARBA",
"countryId": 168,
"countryISOCode3": "ARG",
"countryDesc": "Argentina",
"additionalInformation": "",
"checkingRegex": "/^[0-9]{22}$/",
"savingRegex": "/^[0-9]{22}$/",
"branchRegex": null,
"isEnabled": true,
"transactionTypes": [
"PayIn",
"PayOut"
],
"version": 0,
"createdAt": "0001-01-01T00:00:00",
"createdBy": null,
"modifiedAt": null,
"modifiedBy": null
},
{
"id": 8,
"code": "014",
"bankType": "Bank",
"name": "BANCO DE LA PROVINCIA DE BUENOS AIRES",
"swift": "PRBAARBA",
"countryId": 168,
"countryISOCode3": "ARG",
"countryDesc": "Argentina",
"additionalInformation": "",
"checkingRegex": "/^[0-9]{22}$/",
"savingRegex": "/^[0-9]{22}$/",
"branchRegex": null,
"isEnabled": true,
"transactionTypes": [
"PayIn",
"PayOut"
],
"version": 0,
"createdAt": "0001-01-01T00:00:00",
"createdBy": null,
"modifiedAt": null,
"modifiedBy": null
},
{
"id": 9,
"code": "015",
"bankType": "Bank",
"name": "INDUSTRIAL AND COMMERCIAL BANK OF CHINA",
"swift": "ICBKARBA",
"countryId": 168,
"countryISOCode3": "ARG",
"countryDesc": "Argentina",
"additionalInformation": "",
"checkingRegex": "/^[0-9]{22}$/",
"savingRegex": "/^[0-9]{22}$/",
"branchRegex": null,
"isEnabled": true,
"transactionTypes": [
"PayIn",
"PayOut"
],
"version": 0,
"createdAt": "0001-01-01T00:00:00",
"createdBy": null,
"modifiedAt": null,
"modifiedBy": null
}
],
"total": 5,
"offset": 0
}
Check the CountryISO Code3 in the following section:
Country CodesLast updated
Was this helpful?