> For the complete documentation index, see [llms.txt](https://pivot-payment.gitbook.io/pivot-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pivot-payment.gitbook.io/pivot-docs/api-references/api-lists/account-and-balance/transfer/transfer-object.md).

# Transfer Object

A transfer is a single money movement between accounts within the platform

```json
{
  "uuid": "8uh7-n332-9vst-l2c1",
  "referenceId": "[your_reference]",
  "recipientId": "u734-981324saf-53tu",
  "amount": 100000,
  "remarks": "transfer for coffeeshop",
  "transferType": "DIRECT",
  "status": "SUCCESS",
  "transaction_timestamp": "2024-05-13T08:21:44.967496538Z",
  "created": "2024-05-13T08:21:44.967496538Z",
  "updated": "2024-05-13T08:21:44.967496538Z"
}
```

**Detail Transfer Object**

<table data-full-width="false"><thead><tr><th>Parameter</th><th width="126.365234375">Data Type</th><th width="147.5810546875">Requirement</th><th>Description</th></tr></thead><tbody><tr><td>uuid</td><td>String</td><td>M</td><td>Object Unique Identifier</td></tr><tr><td>referenceId</td><td>String</td><td>M</td><td>Merchant Reference Id from the Client's System </td></tr><tr><td>recipientId</td><td>String</td><td>M</td><td>UUID of the Recipient, recipient can be a merchant for platform case or a customer for wallet case</td></tr><tr><td>amount</td><td>Number</td><td>M</td><td>Transfer amount</td></tr><tr><td>remarks</td><td>String</td><td>M</td><td>Transfer note or remarks from the Client's System</td></tr><tr><td>transferType</td><td>String</td><td>M</td><td></td></tr><tr><td>status</td><td>ENUM</td><td>M</td><td>Transfer Status, one of <mark style="color:orange;"><code>SUCCESS</code></mark>, <mark style="color:orange;"><code>PENDING</code></mark> and <mark style="color:orange;"><code>FAILED</code></mark></td></tr><tr><td>transactionTimestamp</td><td>String</td><td>M</td><td>Transfer transaction timestamp</td></tr><tr><td>created</td><td>String</td><td>M</td><td>Transfer Object created time in ISO-8601 Format. i.e. 2024-05-13T08:21:44.967496538Z</td></tr><tr><td>updated</td><td>String</td><td>M</td><td>Transfer Object last updated time in ISO-8601 Format. i.e. 2024-05-13T08:21:44.967496538Z</td></tr></tbody></table>


---

# 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://pivot-payment.gitbook.io/pivot-docs/api-references/api-lists/account-and-balance/transfer/transfer-object.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.
