# List of Transfer Request

### Method and URL

<mark style="color:green;">`GET`</mark> | <mark style="color:orange;">`[BASE_URL]`</mark>`/v1/transfers?referenceId=[Your Ref ID]`

{% hint style="info" %} <mark style="color:orange;">`referenceId`</mark> is optional. \
\
With <mark style="color:orange;">`referenceId`</mark> provided, the response will return array of data contains single transfer with exact match reference id
{% endhint %}

### Response

#### Example Response Body

{% code fullWidth="true" %}

```json
{
    "code": "string",
    "message": "string",
    "data": [
        {
            "uuid": "8uh7-n332-9vst-l2c1",
            "referenceId": "PAY/trf-0109332",
            "recipientId": "u734-981324saf-53tu",
            "amount": 10000,
            "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"
        },
        // more transfer items
    ],
    "pagination": {
        "page": 1,
        "perPage": 10,
        "totalPage": 10,
        "totalData": 100
    }
}
```

{% endcode %}

#### **Response Data Schema**

<table><thead><tr><th width="151">Schema Path</th><th width="362">Description</th><th>Data Type Validation</th></tr></thead><tbody><tr><td><strong>code</strong></td><td>Response Code from Harsya</td><td>String</td></tr><tr><td><strong>message</strong></td><td>Human readable message that represent response from Harsya</td><td>String</td></tr><tr><td><strong>data</strong></td><td>Response Data from Harsya contains list of <a href="../transfer-object#transfer-object-schema">Transfer Object</a></td><td>Object</td></tr><tr><td><strong>pagination</strong></td><td>Page Information</td><td>Object</td></tr></tbody></table>
