Misc
Name enquiry
Name Enquiry
Tuition payment through a bank will have an individual initiating the transaction. To access the details of the operator, you can send a request to this endpoint:
Endpoint
{{baseurl}}/misc/bank/name-enquiry
This is a POST request and requires the following parameters:
Field | Data Type | Description |
---|---|---|
accountNumber | String | Identification numbers attached to the initiating bank account. |
bankCode | String | This is a code associated with the bank. It’s sometimes referred to as a routing number, bank identifier code, or BIC (Bank Identifier Code) |
Your request should look like this:
{
"accountNumber": "string",
"bankCode": "string"
}
If your request is successful, you should get this response:
{
"success": true,
"statusCode": 200,
"message": "Name Enquired successfully",
"data": {
"success": true,
"statusCode": 200,
"message": "Name Enquired successfully",
"data": {
"sessionId": "",
"bankCode": "",
"accountNumber": "",
"accountName": ""
}
}
}