PUT
/
v1
/
accounts
/
{account_id}
/
balance
/
{denomination}
/
autorefill
curl --request PUT \
  --url https://api.gofermata.com/v1/accounts/{account_id}/balance/{denomination}/autorefill \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "denomination": "<string>",
  "threshold": 123,
  "amount": 123,
  "usd_charge": 123,
  "refill_monthly": true
}'

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
denomination
string
required

Body

application/json
denomination
string
threshold
integer
amount
integer
usd_charge
integer
refill_monthly
boolean

Response

200

OK