PATCH
/
reserve
/
{id}
curl --request PATCH \
  --url https://api.treasuryprime.com/reserve/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "0.00"
}'
{
  "account_id": "acct_1234567890",
  "amount": "0.00",
  "id": "reserve_1029384756",
  "reserve_account_id": "acct_0987654321",
  "upper_limit": "100.00",
  "userdata": null
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier for object

Body

application/json
The reserve to update

The body is of type object.

Response

200 - application/json
The reserve updated

The response is of type object.