Integration Guides
Customer Journey
- Customer API Overview
- Authentication
API 2.x Reference
- Authorization
- Settings Controller
- IP Controller
- Two-Factor Authentication
- User Access - Password
- Session Controller
- Tenant
- Customers B2X
- Wallet
- Transfer Order
Execute Wallet Transfer
Execute a transfer between wallets
POST
/
api
/
v2.1
/
wallet-transfers
/
execute
Copy
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/wallet-transfers/execute \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--data '{
"sourceAssetAddress": "<string>",
"destinationAssetAddress": "<string>",
"amount": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"transferType": "INTERNAL",
"lineOfBusiness": "<string>",
"customerId": "<string>",
"metadata": {}
}'
Copy
{
"transferId": "<string>",
"sourceAssetId": "<string>",
"sourceWalletId": "<string>",
"destinationAssetId": "<string>",
"destinationWalletId": "<string>",
"sourceAssetAddress": "<string>",
"destinationAssetAddress": "<string>",
"amount": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"fees": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"reference": "<string>",
"transferType": "INTERNAL",
"status": "CREATED",
"executionTime": "2022-03-10T16:15:50.000Z",
"validationResults": [
{
"code": "<string>",
"status": "<string>",
"message": "<string>",
"severity": "INFO"
}
],
"metadata": {}
}
Headers
Forwarded client IP address
Client user agent information
Tenant identifier for multi-tenant operations
Query Parameters
Body
application/json
Transfer request details
The body is of type object
.
Response
200
application/json
Transfer executed successfully
The response is of type object
.
Copy
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/wallet-transfers/execute \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--data '{
"sourceAssetAddress": "<string>",
"destinationAssetAddress": "<string>",
"amount": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"transferType": "INTERNAL",
"lineOfBusiness": "<string>",
"customerId": "<string>",
"metadata": {}
}'
Copy
{
"transferId": "<string>",
"sourceAssetId": "<string>",
"sourceWalletId": "<string>",
"destinationAssetId": "<string>",
"destinationWalletId": "<string>",
"sourceAssetAddress": "<string>",
"destinationAssetAddress": "<string>",
"amount": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"fees": {
"value": "<string>",
"scale": 1,
"currency": "<string>",
"isPositive": true,
"positive": true
},
"reference": "<string>",
"transferType": "INTERNAL",
"status": "CREATED",
"executionTime": "2022-03-10T16:15:50.000Z",
"validationResults": [
{
"code": "<string>",
"status": "<string>",
"message": "<string>",
"severity": "INFO"
}
],
"metadata": {}
}
Assistant
Responses are generated using AI and may contain mistakes.