POST
/
transactions
/
transfer
curl --request POST \
  --url https://api-sandbox.lumx.io/transactions/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "currency": "USDC",
  "from": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "to": "980dc26b-42fd-4044-8a42-2271d20a2eb9",
  "amount": "10000.000000"
}'
{
  "value": {
    "id": "123e4567-e89b-12d3-a456-426614174004",
    "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "transfer",
    "request": {
      "currency": "USDC",
      "from": "123e4567-e89b-12d3-a456-426614174001",
      "to": "123e4567-e89b-12d3-a456-426614174002",
      "amount": "1000.000000"
    },
    "state": {
      "status": "processing"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header on the format Bearer <API_KEY>.

Body

application/json

Response

202 - application/json
Transfer transaction started successfully.

The response is of type object.