2. Fetch Reconciliation

You can authorize PayWall with your own access credentials through the PayOut providers supported by PayWall to perform balance check operations.

Balance Check

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

Important: To use the Fetch Reconciliation service, you need to send 'apikeyprivate' and 'apiclientprivate' parameters in the 'Header' field.

PaymentPrivateAPI Adresi

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

Parameter
Type
Compulsory
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 you want to fetch. Format: yyyy-MM-dd

The response returned from the service:

Parameter
Type
Description

Body

object

Details regarding the reconciliation

ErrorCode

int

Error code. If the operation is successful, it returns a value of '0'.

Result

bool

It returns either true or false. If the operation is successful, it returns 'true'.

Message

string

If the operation fails, this is the error message specified for that error, providing 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