For the complete documentation index, see llms.txt. This page is also available as Markdown.

4. Reconciliation List

You can authorize Paywall with your own access credentials via the PayOut providers supported by Paywall and perform your balance check operations.

Reconciliation List

GET {{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.

ÖImportant: To use the Reconciliation List service, you must include the apikeyprivate and apiclientprivate parameters in the Header. PaymentPrivateAPI Address

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

Parameter
Type
Compolsory
Description

apikeyprivate

string

Yes

The Private Key obtained from the merchant panel

apiclientprivate

string

Yes

The Private Client obtained from the merchant panel

datefrom

date

Yes

List start date

dateto

date

Yes

List end date

start

int

Yes

Start

length

int

Yes

End

sortvalue

string

No

Sorting value Values: desc, asc

Response returned from the service:

Parameter
Type
Description

Body

object

JSON containing detailed balance information (optional)

ErrorCode

int

Error code. Returns '0' if the operation is successful

Result

bool

Returns true or false. If the operation is successful, it returns true

Message

string

If the operation fails, it returns the relevant error message and provides language support based on the locale parameter

{
    "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
    }
}

Last updated