> For the complete documentation index, see [llms.txt](https://docs.payrexx.com/developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payrexx.com/developer/general-info/objects/transfer.md).

# Transfer

### Occurrence

<table data-view="cards"><thead><tr><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><a data-mention href="/pages/3qE2lmgNwr7GAHheYHGl">/pages/3qE2lmgNwr7GAHheYHGl</a></td><td><a href="/pages/3qE2lmgNwr7GAHheYHGl">/pages/3qE2lmgNwr7GAHheYHGl</a></td></tr></tbody></table>

### Content

<table><thead><tr><th width="231.6796875">Key</th><th width="154.80078125">Type</th><th>Description</th></tr></thead><tbody><tr><td>type</td><td>string</td><td><ul><li>The type of the transfer</li><li>Check the next section</li></ul></td></tr><tr><td>amount</td><td>int</td><td>Total amount of this transfer</td></tr><tr><td>date_time</td><td>string</td><td>Date and time of the transfer creation in the ISO 8601 format (2025-10-01T09:36:07+00:00)</td></tr><tr><td>items</td><td>array of Items</td><td><ul><li>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</li><li><a data-mention href="/pages/zb0nqcaiuxfwyc6v3hPK">/pages/zb0nqcaiuxfwyc6v3hPK</a></li></ul></td></tr><tr><td>transaction</td><td>Transaction|empty object</td><td><ul><li>If this transfer is related to a transaction, a Transaction object is added; otherwise, an empty object</li><li><a data-mention href="/pages/B5fhepzfFclyUybsb77S">/pages/B5fhepzfFclyUybsb77S</a></li></ul></td></tr></tbody></table>

### 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

```json
{
  "type": "payout-fee",
  "amount": -10,
  "date_time": "2026-01-06T13:45:18+00:00",
  "items": [
    {
      "type": "payout-fee",
      "amount": -10
    }
  ],
  "transaction": {}
}
```

```json
{
  "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": ""
  }
}
```
