Bank Information Api
Bank Information
Description :
This API endpoint is used to get the banks information of comapny.
Endpoint URL :Request Parameters
| Request Parameter | Data Type | Default Value | Required | Description | Change Date | Change Description |
|---|
Request Example
Responses (JSON)
- Status Code 1: records fetched
- Description: records successfully fetched.
- status_code (integer): The status code of the response (1).
- 'message' (string): "records successfully fetched"
- 'recordsTotal' (integer): "number or total records"
- 'recordsFiltered' (integer): "number or records filtered"
-
'data' (Array): "it contains array of object"
- 'id' (integer): "unique id of the record"
- 'logo' (string): "image url of bank logo"
- 'bank_name' (string): "name of bank"
- 'account_holder' (string): "name of account holder"
- 'account_number' (string): "account number"
- 'ifsc_code' (string): "ifsc code of account"
- 'branch' (string): "branch name of bank"
{"status_code": 0, "message": "records not found"}, 200
- Status Code 0: Error message
- Description: A specific error message.
- 'status_code' (integer): 0
- 'message' (string): "there is no data found"
Note
- The API endpoint should be accessed via a POST request.
- Ensure that the request is properly validated and sanitized to prevent security vulnerabilities.
- Implement proper error handling on the client side to display user-friendly error messages based on the 'status_code' and 'message' fields in the response.