> For the complete documentation index, see [llms.txt](https://developer.paywall.one/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.paywall.one/payment-orchestration-integration-document/reconciliation-service/virtual-pos/4.-reconciliation-list.md).

# 4. Reconciliation List

## **Reconciliation List**

<mark style="color:blue;">`GET`</mark> `{{Base Address}}/api/paywall/private/vpos/reconciliation/list`

It is sufficient to send a request to the address provided above. You can use the **Base Address** as needed for both the test and live environments.

{% hint style="info" %}
Ö**Important:** To use the **Reconciliation List** service, you must include the **apikeyprivate** and **apiclientprivate** parameters in the **Header**.\
\
[<mark style="color:green;">**PaymentPrivateAPI Address**</mark>](/payment-orchestration-integration-document/environment.md)
{% endhint %}

#### The header information to be sent to the service is as follows:

<table><thead><tr><th width="205.20703125">Parameter</th><th width="106.33333333333331">Type</th><th width="170.78125">Compolsory</th><th>Description</th></tr></thead><tbody><tr><td>apikeyprivate</td><td>string</td><td>Yes</td><td>The <strong>Private Key</strong> obtained from the merchant panel</td></tr><tr><td>apiclientprivate</td><td>string</td><td>Yes</td><td>The Private Client obtained from the merchant panel</td></tr><tr><td>datefrom</td><td>date</td><td>Yes</td><td>List start date</td></tr><tr><td>dateto</td><td>date</td><td>Yes</td><td>List end date</td></tr><tr><td>start</td><td>int</td><td>Yes</td><td>Start</td></tr><tr><td>length</td><td>int</td><td>Yes</td><td>End</td></tr><tr><td>sortvalue</td><td>string</td><td>No</td><td>Sorting value<br><br>Values: desc, asc</td></tr></tbody></table>

**Response returned from the service:**

<table><thead><tr><th width="156">Parameter</th><th width="83.33333333333331">Type</th><th>Description</th></tr></thead><tbody><tr><td>Body</td><td>object</td><td>JSON containing detailed balance information (optional)</td></tr><tr><td>ErrorCode</td><td>int</td><td>Error code. Returns <code>'0'</code> if the operation is successful</td></tr><tr><td>Result</td><td>bool</td><td>Returns <strong>true</strong> or <strong>false</strong>. If the operation is successful, it returns <strong>true</strong></td></tr><tr><td>Message</td><td>string</td><td>If the operation fails, it returns the relevant error message and provides language support based on the <strong>locale</strong> parameter</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code overflow="wrap" lineNumbers="true" %}

```json5
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "Data": [
            {
                "ReconciliationId": 522344,
                "ReconciliationDate": "2024-05-07T00:00:00",
                "IsReconciled": true,
                "InsertDateTime": "2024-06-23T20:11:55.316038",
                "UpdateDateTime": null
            },
            {
                "ReconciliationId": 232423,
                "ReconciliationDate": "2024-05-05T00:00:00",
                "IsReconciled": true,
                "InsertDateTime": "2024-06-17T17:21:08.415729",
                "UpdateDateTime": null
            },
            {
                "ReconciliationId": 145646,
                "ReconciliationDate": "2024-05-06T00:00:00",
                "IsReconciled": false,
                "InsertDateTime": "2024-06-17T17:20:50.665343",
                "UpdateDateTime": null
            }
        ],
        "TotalRecord": 3
    }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
