POST
/
v1
/
accounts
/
{account_id}
/
modifymidmonth
curl --request POST \
  --url https://api.gofermata.com/v1/accounts/{account_id}/modifymidmonth \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_id": "string",
  "denomination": "string",
  "amount": "integer",
  "usd_charge": "string",
  "dryrun": true
}'
{
  "data": {
    "account_id": "<string>",
    "isdryrun": true,
    "amount": 123,
    "denomination": "<string>",
    "refill_amount": 123,
    "refill_day": 123,
    "refill_usd_amount": 123,
    "usd_amount_charged": "<string>"
  }
}

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

Body

application/json
account_id
string
required
denomination
string
required
amount
integer
required
usd_charge
integer
required
dryrun
boolean

Response

200 - application/json
OK
data
object