Modify Cash

POST /admin/accounts/modify-cash

Modify Cash

Modify the cash of an account via a withdrawal or deposit.

application/json

Body Required

  • admin_fin string Required
  • modification_data object Required
    Hide modification_data attributes Show modification_data attributes object
    • amount number(double) Required
    • currency string Required

      Values are ARS, AUD, BWP, BRL, CAD, CNH, CNY, COP, CZK, DKK, DOP, EGP, EUR, GBP, HKD, HUF, IDR, INR, ISK, JPY, KZT, LTL, LUF, MXN, MYR, TWD, NZD, NOK, PEN, PLN, KRW, RON, RUB, SGD, SKK, SIT, ZAR, SEK, CHF, THB, TRY, USD, UYU, or VND.

    • description string Required
    • fan string Required
    • modificationType string Required

      Values are Withdraw or Deposit.

POST /admin/accounts/modify-cash
curl \
 -X POST http://api.example.com/admin/accounts/modify-cash \
 -H "Content-Type: application/json" \
 -d '{"admin_fin":"string","modification_data":{"amount":42.0,"currency":"ARS","description":"string","fan":"string","modificationType":"Withdraw"}}'
Request example
{
  "admin_fin": "string",
  "modification_data": {
    "amount": 42.0,
    "currency": "ARS",
    "description": "string",
    "fan": "string",
    "modificationType": "Withdraw"
  }
}
Request examples
{
  "admin_fin": "string",
  "modification_data": {
    "amount": 42.0,
    "currency": "ARS",
    "description": "string",
    "fan": "string",
    "modificationType": "Withdraw"
  }
}