POST
/
v1
/
community
/
tipping
/
transfers
cURL
curl --request POST \
  --url https://api.flipsuite.xyz/v1/community/tipping/transfers \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "channelId": "1234567890123456789",
  "recipientAddress": "0x8dd3b9bc6f6179b8e251b8f56b2e417e74e5227e",
  "item": {
    "type": "TOKEN",
    "chain": "Polygon",
    "tokenAddress": "0x162539172b53e9a93b7d98fb6c41682de558a320",
    "amount": 1000
  }
}'

Headers

x-api-key
string<uuid>
required

Your community API key.

Body

application/json
channelId
string

ID of a Discord channel in your server where the transfer should be executed.

recipientAddress
string

Wallet address to send the assets to.

Maximum length: 128
item
object
comment
string | null

Note that will be shown on the "Transfer successful" message.

Maximum length: 256
hideNotification
boolean | null

Whether to hide the public "Transfer successful" channel notification after sending the asset.

Response

201

Transfer has been executed successfully