# Retrieve a Transfer Request

### Method and URL

<mark style="color:green;">`GET`</mark> | <mark style="color:orange;">`[BASE_URL]`</mark>`/v1/transfers/:id`

### 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"
    }
}
```

{% 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 <a href="../transfer-object#transfer-object-schema">Transfer Object</a></td><td>Object</td></tr></tbody></table>
