Skip to main content

Send tokens from the merchant wallet

POST/api/merchant/vault/send

Send tokens from the merchant wallet

Request

Request body (required)

{
  "amount": 0.000001,
  "tokenAddress": "string",
  "recipientAddress": "string"
}

Responses

200 Transfer submitted

Example response

{
  "message": "tokens sent from merchant wallet",
  "response": {
    "wallet": "0x1234567890123456789012345678901234567890",
    "recipientAddress": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
    "amount": 25,
    "tokenAddress": "0x1234567890123456789012345678901234567890",
    "txHash": "0xabcdef1234567890"
  }
}