Funds Transfer
This API allows you to transfer funds between different trading accounts or products. The request will specify the source and destination of the funds, along with the transfer amount.
| Parameter | Type | Description | Example/ENUM |
|---|
| Authorization | string | Bearer token for authenticating the request. | {{access_token}} |
| Content-Type | string | Specifies the media type of the request body. | application/json |
| x-api-key | string | API key provided to access the service. | {{x-api-key}} |
📦Request Body Schema
| Parameter | Type | Description | Example/ENUM |
|---|
| moveFromProductID | string | Unique identifier of the product/account to transfer funds from. | "1" |
| moveToProductID | string | Unique identifier of the product/account to transfer funds to. | "2" |
| transferAmount | string | Amount of funds to be transferred. | 1000 |
🟢Success Response - 200 Ok
| Field | Type | Description | Example/ENUM |
|---|
| status | string | Indicates the status of the API call. | ''success'' |
| code | string | Response code related to the request. | "s-101" |
| message | string | Descriptive message providing details of the response. | Success Message |
| data | object | Additional data returned from the API (optional). | Details below |
🧾Data Object Field
| Field | Type | Description | Example/ENUM |
|---|
| ResponseString | string | A string message containing detailed response information. | "Request for Allocating Funds has been updated successfully. Transaction Reference No: 22040158500000020" |