FUNDS TRANSFER
This API allows users to transfer (add/move) funds between mapped trading products within their trading account.
🔍 Query Parameters
| Parameter | Type | Required | Description | Example |
|---|
| userId | string | Yes | User ID (UCC) | "{{user_id}}" |
| Header | Type | Description | Example |
|---|
| Content-Type | string | Request payload format | application/json |
| Authorization | string | Access token for authenticated requests | {{access_token}} |
| x-api-key | string | API key used to authorize request | {{x-api-key}} |
📑 Request Body Parameters
| Field | Type | Required | Description | Example |
|---|
| moveFromProductID | string | Yes | Source Product ID from which funds will be transferred | "1" |
| moveToProductID | string | Yes | Destination Product ID to which funds will be transferred | "2" |
| transferAmount | string | Yes | Amount to be transferred | "10000" |
🟢 Success Response - 200 OK
Content-Type: application/json
| Field | Type | Description | Example |
|---|
| status | string | Status of API call | "success" |
| code | string | Response code | "s-101" |
| message | string | Success message | "Funds transferred successfully" |
| data | object | Funds transfer response details | Refer Data Object Fields |
📦 Data Object Fields
| Field | Type | Description | Example |
|---|
| ResponseString | string | Transfer status/response message returned by the system | "Funds transferred successfully" |
📝 Notes
- Allows transfer of available funds between mapped trading products.
moveFromProductID specifies the source product.
moveToProductID specifies the destination product.
- Transfer is allowed only between products configured through the Funds Transfer Mapped Product API.