Realm-Members
Update Member Balance Of A Currency
Accounts
Realm-Members
Realms
Currencies
Twitter-Data
Web3-Data-Collections
Web3-Data-Wallets
Web3-Data-Nfts
Web3-Data-Tokens
Web3-Activations
Web3-Activations-Configs
Realm-Members
Update Member Balance Of A Currency
PATCH
/
api
/
v1
/
realms
/
{realmId}
/
members
/
{dripId}
/
balance
curl --request PATCH \
--url https://api.drip.re/api/v1/realms/{realmId}/members/{dripId}/balance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 123,
"currencyId": "<string>"
}'
{
"id": "<string>",
"dripId": "<string>",
"balance": 123,
"currencyId": "<string>"
}
Authorizations
API Key
Body
application/json
Response
200
application/json
Default Response
The response is of type object
.
curl --request PATCH \
--url https://api.drip.re/api/v1/realms/{realmId}/members/{dripId}/balance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 123,
"currencyId": "<string>"
}'
{
"id": "<string>",
"dripId": "<string>",
"balance": 123,
"currencyId": "<string>"
}