PATCH
/
api
/
v1
/
realms
/
{realmId}
/
members
/
{dripId}
/
transfer
curl --request PATCH \
  --url https://api.drip.re/api/v1/realms/{realmId}/members/{dripId}/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 2,
  "recipientId": "<string>",
  "currencyId": "<string>"
}'
{
  "id": "<string>",
  "senderId": "<string>",
  "recipientId": "<string>",
  "balance": 123,
  "currencyId": "<string>"
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

realmId
string
required
dripId
string
required

Body

application/json
amount
integer
required

Amount to transfer

Required range: x >= 1
recipientId
string
required

ID of the recipient

currencyId
string

ID of the realm point type

Response

200
application/json
Default Response
id
string
senderId
string
recipientId
string
balance
integer
currencyId
string