Bank Details by Bank ID
This API retrieves detailed bank information based on the given productId and bankId. It returns essential details such as account number, IFSC code, account type, bank branch info, and withdrawal permissions.
🛣️Path Parameters
| Parameter | Type | Required | Description | Example |
|---|
| productId | integer | Yes | Product identifier | 1 |
| bankId | string | Yes | Bank identifier (usually bank code) | "HDFC" |
| Header | Type | Description | Example |
|---|
| Authorization | string | Bearer token for authentication | Bearer {{access_token}} |
| x-api-key | string | API key for access control | {{x-api-key}} |
🟢Success Response - 200 Ok
| Field | Type | Description | Example |
|---|
| status | string | Status of API call | "success" |
| code | string | Response code | "s-101" |
| message | string | Success message | "Success message" |
| data | array | Array of bank detail objects | See below |
📘Data Object Info Fields
| Field | Type | Description | Example/ENUM |
|---|
| sAccountNo | string | Bank account number | "1234567890" |
| sIFSC | string | IFSC code of the bank branch | "HDFC0001234" |
| sCustomerId | string | Customer identifier associated with the bank account | "CUST789" |
| sAccountType | string | Type of account (Savings or Current) | "Savings" |
| nProductCode | string | Code representing the product | "PROD01" |
| sProductType | string | Type of product | "NetNet" |
| sBankBranchId | string | Unique identifier for the bank branch | "BR001" |
| sBankId | string | Bank identifier (bank code) | "HDFC" |
| sBankName | string | Name of the bank | "HDFC Bank" |
| sBranchName | string | Branch name | "Andheri West" |
| sBranchCity | string | City where branch is located | "Mumbai" |
| sManagerIP | string | Manager's IP address (if applicable) | "192.168.0.1" |
| sGroupId | string | Group ID associated with the user | "HO" |
| bWithdrawAllowed | boolean | Flag indicating if withdrawal is allowed | true |