This section give's control for transfer rules (transfer config).
Transfer rule must be provided with currency and threshold.
Transfer will be approved automatically in case the transfer amount is below the threshold.
Any transfer amount above the threshold must be approved by admin.
Admin logged in - can create,edit or delete any transfer rule per currency.
User logged in - dont have access to transfer config.
Returns details of a specific transfer configuration.
Transfer config details retrieved successfully
{- "api_message": "TRANSFER_CONFIG_GET_SHOW_SUCCESS",
- "api_data": {
- "transfer_config": {
- "id": "string",
- "ref_account_id": "string",
- "currency": "string",
- "currency_id": "string",
- "threshold": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
}
Updates an existing transfer configuration.
Transfer config updated successfully
{- "currency_id": "string",
- "threshold": 0
}
{- "api_message": "TRANSFER_CONFIG_PUT_SUCCESS",
- "api_data": {
- "transfer_config": {
- "id": "string",
- "ref_account_id": "string",
- "currency": "string",
- "currency_id": "string",
- "threshold": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
}
Returns a list of transfer configurations.
Transfer configs listed successfully
{- "api_message": "TRANSFER_CONFIG_GET_LIST_SUCCESS",
- "api_data": [
- {
- "id": "string",
- "ref_account_id": "string",
- "currency": "string",
- "currency_id": "string",
- "threshold": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
}
Creates a new transfer configuration.
Transfer config created successfully
{- "currency_id": "string",
- "threshold": 0
}
{- "api_message": "TRANSFER_CONFIG_POST_SUCCESS",
- "api_data": {
- "transfer_config": {
- "id": "string",
- "ref_account_id": "string",
- "currency": "string",
- "currency_id": "string",
- "threshold": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
}