Transfers
Get transfer details
Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Transfers
Get transfer details
Get details of a specific transfer (withdrawals or deposits) executed from an exchange. Only supports Exchange integrations.
POST
/
api
/
v1
/
transfers
/
details
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/transfers/details \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"transactionId": "63F1A6B6-BF45-4E51-A624-EC52B5680D48",
"authToken": "Secret authentication token",
"type": "robinhood"
}'
{
"content": {
"id": "8E25ACB5-A9E2-4D00-8772-A255F010A2A9",
"status": "succeeded",
"type": "deposit",
"fromAddress": "D5PumQwt...",
"targetAddress": "D641Fmzx...",
"symbol": "DOGE",
"hash": "3310c6202aaeb44754a118ce11f255382d012060ade0d6d9f...",
"amount": 15,
"transactionAmount": 10,
"createdTimestamp": 1653215600,
"updatedTimestamp": 1653215600,
"networkTransactionFee": {
"amount": 5,
"symbol": "DOGE"
},
"confirmations": 17,
"blockchainMethod": "transfer"
},
"status": "ok",
"message": "",
"errorType": ""
}
Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Body
application/json
Response
200
application/json
Transfer details obtained.
The response is of type object
.
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/transfers/details \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"transactionId": "63F1A6B6-BF45-4E51-A624-EC52B5680D48",
"authToken": "Secret authentication token",
"type": "robinhood"
}'
{
"content": {
"id": "8E25ACB5-A9E2-4D00-8772-A255F010A2A9",
"status": "succeeded",
"type": "deposit",
"fromAddress": "D5PumQwt...",
"targetAddress": "D641Fmzx...",
"symbol": "DOGE",
"hash": "3310c6202aaeb44754a118ce11f255382d012060ade0d6d9f...",
"amount": 15,
"transactionAmount": 10,
"createdTimestamp": 1653215600,
"updatedTimestamp": 1653215600,
"networkTransactionFee": {
"amount": 5,
"symbol": "DOGE"
},
"confirmations": 17,
"blockchainMethod": "transfer"
},
"status": "ok",
"message": "",
"errorType": ""
}