Transfer

Transfer object fields.

Occurrence

Content

KeyTypeDescription
typestring
  • The type of the transfer
  • Check the next section
amountintTotal amount of this transfer
date_timestringDate and time of the transfer creation in the ISO 8601 format (2025-10-01T09:36:07+00:00)
itemsarray of Items
  • The sum of the items is equal to the value of amount. For example, a transaction of 30000 and fees of -300 result in an amount of 29400
  • /pages/zb0nqcaiuxfwyc6v3hPK
transactionTransaction|empty object

Type Values

  • transaction
  • transaction-reversal
  • dispute
  • dispute-reversal
  • payout
  • payout-reversal
  • adjustment
  • manual-adjustment
  • payout-fee
  • payout-reserve
  • payout-reserve-reversal
  • alternative-currency-payout-fee-percent

Example

{
  "type": "payout-fee",
  "amount": -10,
  "date_time": "2026-01-06T13:45:18+00:00",
  "items": [
    {
      "type": "payout-fee",
      "amount": -10
    }
  ],
  "transaction": {}
}
{
  "type": "transaction",
  "amount": 29400,
  "date_time": "2025-12-25T13:44:30+00:00",
  "items": [
    {
      "type": "transaction",
      "amount": 30000
    },
    {
      "type": "transaction-fee",
      "amount": -600
    }
  ],
  "transaction": {
    "type": "transaction",
    "amount": 30000,
    "uuid": "aabb1122",
    "fee": 600,
    "currency": "EUR",
    "time": "2026-01-06T14:44:31+01:00",
    "payment": {
      "brand": "visa"
    },
    "reference_id": ""
  }
}