POST
/
v1
/
transfers
curl --request POST \
  --url https://omnisafe.sandbox.ecrop.de/omni-safe/v1/transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id-in-client": "<string>",
  "tokenAddress": "<string>",
  "tokenMark": "<string>",
  "senderAddress": "<string>",
  "recipientAddress": "<string>",
  "quantity": 123
}'
"<string>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
id-in-client
string

An identifier provided by the client for this transfer. Must be unique per client.

tokenAddress
string

The address of the token being transferred.

tokenMark
string

The mark or symbol of the token.

senderAddress
string

The address of the sender's wallet.

recipientAddress
string

The address of the recipient's wallet.

quantity
number

The amount of tokens to transfer.

Response

201
application/json
The created transfer transaction

The response is of type string.