> For the complete documentation index, see [llms.txt](https://docs.bellmfb.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bellmfb.com/references/bank-transfer/requery-transfer.md).

# Requery Transfer

## 1. Transaction Query by Reference

<mark style="color:green;">`GET`</mark> `/v1/transactions/reference/{reference}`

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |
|               |                    |

{% tabs %}
{% tab title="200" %}

<pre class="language-json"><code class="lang-json"><strong>{
</strong>    "success": true,
    "message": "",
    "data": {
        "netAmount": 180,
        "details": {},
        "id": 19253,
        "userId": 745,
        "accountId": null,
        "amount": "180.00",
        "charge": "0.00",
        "description": "Transfer to John Doe",
        "destinationAccountNumber": "1000006362",
        "destinationAccountName": "John Doe",
        "destinationBankCode": "000023",
        "destinationBankName": "Test Bank",
        "sourceAccountNumber": "8011223344",
        "sourceAccountName": "",
        "sourceBankCode": "",
        "sourceBankName": "",
        "reference": "A_00124092616341963292958",
        "transactionTypeName": "bank_transfer",
        "stampDuty": null,
        "sessionId": "100004240926153311119822107551",
        "status": "successful",
        "reversedFlag": 0,
        "category": "bank_transfer",
        "utilityType": null,
        "type": "credit",
        "completedAt": 1727364859641,
        "createdAt": 1727364859642,
        "updatedAt": 1727364859642
    }
}
</code></pre>

{% endtab %}

{% tab title="400" %}

```json
{
  "success": false,
  "message": "Request Unsuccessful",
  "data": null
}
```

{% endtab %}
{% endtabs %}

## 2. Transfer Requery

<mark style="color:green;">`GET`</mark> `/v1/transfer/tsq`?transactionId=12345698690885579

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
     "success": true,
     "message": "Tsq successful",
     "data": {
        "transactionStatus": "SUCCESSFUL",
        "feedbackCode": "00",
        "feedbackDescription": "Approved or completed successfully"
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "success": false,
  "message": "Request Unsuccessful",
  "data": null
}
```

{% endtab %}
{% endtabs %}
