# Transfer

### Occurrence

<table data-view="cards"><thead><tr><th></th></tr></thead><tbody><tr><td><a data-mention href="../../guides/webhook/payout">payout</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="transfer/item">item</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="transfer/transaction">transaction</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": ""
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.payrexx.com/developer/general-info/objects/transfer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
