API Reference
Complete API documentation and reference
Batch update the balances of multiple DRIP users in a realm by their drip ids and currency id. All updates are applied in a single transaction, so if any update fails, the entire batch will fail.
cURL
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>" } ], "initiatorId": "<string>" }'
{ "success": true, "updates": [ { "dripId": "<string>", "balance": 123, "currencyId": "<string>", "newBalance": 123 } ] }
API Key
Show child attributes
Default Response
Was this page helpful?