Balances

Balances Events

POST /v1/integration/user/balances

The balance request is dyanmic and several "balances/wallets" can be updated at the same time. Below is an example with a real money & bonus balance update.

Sample Request for a balance update

{
  "balances": [
    {
      "amount": 50,
      "currency": "EUR",
      "key": "real_money",
      "exchange_rate": 1
    },
    {
      "amount": 50,
      "currency": "EUR",
      "key": "bonus_money",
      "exchange_rate": 1
    }
  ],
  "origin": "example.com",
  "timestamp": "2019-07-16T12:00:00Z",
  "user_id": "1234d"
}