PATCH
/
api
/
v1
/
realms
/
{realmId}
/
members
/
transaction
curl --request PATCH \
  --url https://api.drip.re/api/v1/realms/{realmId}/members/transaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "updates": [
    {
      "dripId": "<string>",
      "amount": 123,
      "currencyId": "<string>"
    }
  ]
}'
{
  "success": true,
  "updates": [
    {
      "dripId": "<string>",
      "balance": 123,
      "currencyId": "<string>",
      "newBalance": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key

Body

application/json
updates
object[]
required

Response

200
application/json
Default Response
success
boolean
updates
object[]