Make a manual adjustment to a customer's outstanding balance

post/customer-balance-adjustments
SecuritybearerAuth
Request
Request Body schema: application/json

New customer balance adjustment

customerId
required
integer <int32>

Customer identifier

amountInMajorCurrency
required
number [ -100000 .. 100000 ]

Amount in major currency (e.g pounds/dollars/euros)

description
string [ 0 .. 255 ] characters [\w\p{L}\s%£@&#=':;`’,|!_—–\(\)\\/\-\+\.\?\*\...

Adjustment description

Responses
200

Customer balance adjusted

400

Bad Request

401

Unauthorized

403

Forbidden

Request samples
application/json
{
  • "customerId": 1,
  • "amountInMajorCurrency": 10.5,
  • "description": "string"
}
Response samples
application/json
{
  • "id": 1,
  • "customerId": 1,
  • "amountInMajorCurrency": 10.5,
  • "currencyId": 1,
  • "description": "string"
}