Skip to main content

Get Account Name Enquiry

POST /openbanking/account-verification/{bankCode}

Description

Fetches the account name associated with a given account number for a specific bank. This endpoint is primarily used to verify bank account details during transactions.

Path Parameters:

NameTypeDescription
bankCodestringThe unique code representing the bank. This must be included in the URL path.

Headers:

NameTypeDescription
countryCodestringThe country code where the bank is located.
tenantIdstringThe tenant identifier for the request.

Request Body:

NameTypeDescription
accountNumberstringThe bank account number to verify.
bankCodestringThe unique code representing the bank.

Example Request Body:

{
"accountNumber": "1234567890",
"bankCode": "044"
}

**Sample Response

{
"status": true,
"statusCode": 0,
"message": "Successful",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /openbanking/account-verification/{bankCode} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!