POST
/
transactions
/
transfers
curl --request POST \
  --url https://protocol-sandbox.lumx.io/v2/transactions/transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contractId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "from": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "to": "0xa65aae78edef916d4102ba7b5672068c0d35fbff",
  "tokenId": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "walletId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "created",
  "transactionHash": "<string>",
  "blockExplorerUrl": "<string>",
  "result": {},
  "request": {
    "contractId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "quantity": 2,
    "from": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "to": "0xa65aae78edef916d4102ba7b5672068c0d35fbff"
  },
  "type": "transfer",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <API_KEY>.

Body

application/json

Response

202 - application/json

The transfer operation was submitted to the blockchain. Important: This is an ASYNC route! Use the read transaction route to check the transfer's status.

The response is of type object.