> 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></tr></thead><tbody><tr><td><a data-mention 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": ""
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
