POST
/
v1
/
accounts
/
{account_id}
/
deposit
curl --request POST \
  --url https://api.gofermata.com/v1/accounts/{account_id}/deposit \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount_to_deposit": 123,
  "amount_to_charge": 123,
  "charge_against_denomination": "<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.

Headers

X-DedupeId
string

Used to prevent duplicate requests. Two of the same DedupeId won't be allowed within 1 hour if header exists

Path Parameters

account_id
string
required

Body

application/json
amount_to_deposit
integer
required
amount_to_charge
integer
required
charge_against_denomination
string

Charge against another one of the user's denomination balances instead of credit card

Response

200

OK