2. Get Reconciliation

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

Get Reconciliation

GET {{Base Address}}/api/paywall/private/vpos/reconciliation

Important: To use the Get Reconciliation 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

reconciliationdate

date

Yes

The reconciliation date to be retrieved. Format: yyyy-MM-dd

Response returned from the service:

Parameter
Type
Description

Body

object

Detailed information related to the reconciliation

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": {
        "IsReconciled": true,
        "InsertDateTime": "2024-06-17T17:21:08.415729",
        "UpdateDateTime": null,
        "ReconciliationDate": "2024-05-05T00:00:00"
    }
}

Last updated