Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Managed Transfers
Execute transfer
Commit the previously previewed transfer.
Previews the transfer, using the PreviewId
value.
Handles multi-factor authentication codes if the account is configured to use them for additional security.
Returns the status of the transfer and the details of the transfer if it was initiated successfully.
POST
/
api
/
v1
/
transfers
/
managed
/
execute
Copy
Ask AI
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/transfers/managed/execute \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"fromAuthToken": "Secret authentication token",
"fromType": "robinhood",
"previewId": "29b185b1-2305-40fb-a0e2-929d61451568",
"tryAnotherMfa": false
}'
Copy
Ask AI
{
"content": {
"status": "succeeded",
"executeTransferResult": {
"transferId": "e332336c-de22-11ed-b5ea-0242ac120002",
"status": "pending",
"statusDetails": "In progress",
"fromAddress": "0x9Bf6207f8A3f4278E0C989527015deFe10e5D7c6",
"toAddress": "0x326a8825472bb0f4719998e708a1eeeb4473ed1b",
"symbol": "USDT",
"networkName": "Ethereum",
"networkId": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
"hash": "0xdcfd72635a9b16d3bc0e75311f6fe0612970e9714a1e9e93de0ea5acffc6a454",
"amount": 10,
"amountInFiat": 10,
"totalAmountInFiat": 11.1,
"completedConfirmations": 1,
"institutionTransferFee": {
"fee": 0,
"feeCurrency": "USDT",
"feeInFiat": 0
},
"networkGasFee": {
"fee": 1.1,
"feeCurrency": "USDT",
"feeInFiat": 1.1
}
},
"fallbackMfaAvailable": false
},
"status": "ok",
"message": "",
"errorType": ""
}
Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Body
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/transfers/managed/execute \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"fromAuthToken": "Secret authentication token",
"fromType": "robinhood",
"previewId": "29b185b1-2305-40fb-a0e2-929d61451568",
"tryAnotherMfa": false
}'
Copy
Ask AI
{
"content": {
"status": "succeeded",
"executeTransferResult": {
"transferId": "e332336c-de22-11ed-b5ea-0242ac120002",
"status": "pending",
"statusDetails": "In progress",
"fromAddress": "0x9Bf6207f8A3f4278E0C989527015deFe10e5D7c6",
"toAddress": "0x326a8825472bb0f4719998e708a1eeeb4473ed1b",
"symbol": "USDT",
"networkName": "Ethereum",
"networkId": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
"hash": "0xdcfd72635a9b16d3bc0e75311f6fe0612970e9714a1e9e93de0ea5acffc6a454",
"amount": 10,
"amountInFiat": 10,
"totalAmountInFiat": 11.1,
"completedConfirmations": 1,
"institutionTransferFee": {
"fee": 0,
"feeCurrency": "USDT",
"feeInFiat": 0
},
"networkGasFee": {
"fee": 1.1,
"feeCurrency": "USDT",
"feeInFiat": 1.1
}
},
"fallbackMfaAvailable": false
},
"status": "ok",
"message": "",
"errorType": ""
}
Assistant
Responses are generated using AI and may contain mistakes.