PATCH
/
account
/
{account_id}
/
interest_rate
curl --request PATCH \
  --url https://api.treasuryprime.com/account/{account_id}/interest_rate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "interest_rate": "<any>"
}'
{}

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

account_id
string
required

Account ID

Body

application/json
The account.interest_rate to update
interest_rate
any

Response

200 - application/json
The account.interest_rate updated

The response is of type any.