POST
/
api
/
v1
/
transfers
/
managed
/
execute
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
}'
{
  "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

X-Client-Secret
string
headerrequired

Contact Mesh to get client Secret

X-Client-Id
string
headerrequired

Contact Mesh to get client Id

Body

fromAuthToken
string
required

The authentication token to send the asset from.

Minimum length: 1
fromType
enum<string>
required

The type of the integration to send the asset from.

Available options:
robinhood,
eTrade,
alpaca,
tdAmeritrade,
weBull,
stash,
interactiveBrokers,
public,
coinbase,
kraken,
coinbasePro,
cryptoCom,
openSea,
binanceUs,
gemini,
cryptocurrencyAddress,
cryptocurrencyWallet,
okCoin,
bittrex,
kuCoin,
etoro,
cexIo,
binanceInternational,
bitstamp,
gateIo,
acorns,
okx,
bitFlyer,
coinlist,
huobi,
bitfinex,
deFiWallet,
krakenDirect,
vanguard,
binanceInternationalDirect,
bitfinexDirect,
bybit,
paxos,
coinbasePrime,
btcTurkDirect,
kuCoinDirect,
okxOAuth,
paribuDirect,
robinhoodConnect,
blockchainCom,
bitsoDirect,
binanceConnect,
binanceOAuth,
revolutConnect,
binancePay
previewId
string
required

Id of the Preview of the transfer.

mfaCode
string | null

Multi-factor auth code that should be provided if the status of the transfer was MfaRequired.

tryAnotherMfa
boolean

When user is unable to provide the primary Mfa this should be passed in to use fallback Mfa.

challengeId
string | null

Response

200 - application/json
status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked,
unavailableForLegalReasons
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

errorData
any | null
content
object