Bank Details
This API returns a list of all bank accounts linked to the user. It provides detailed information including account number, IFSC, account type, bank and branch details, group association, and withdrawal eligibility.
| Header | Type | Description | Example |
|---|
| Authorization | string | Bearer token for authentication | Bearer {{access_token}} |
| Content-Type | string | Request content type | application/json |
| 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 |