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:
| Name | Type | Description |
|---|---|---|
bankCode | string | The unique code representing the bank. This must be included in the URL path. |
Headers:
| Name | Type | Description |
|---|---|---|
countryCode | string | The country code where the bank is located. |
tenantId | string | The tenant identifier for the request. |
Request Body:
| Name | Type | Description |
|---|---|---|
accountNumber | string | The bank account number to verify. |
bankCode | string | The 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
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!