3. End of Day Data

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/endofday

Important: To use the End of Day Data service, you need to send 'apikeyprivate' and 'apiclientprivate' parameters in the 'Header' field.

PaymentPrivateAPI Address

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.

endofdaydate

date

Yes

The date information for which the end of day data is requested. Format: yyyy-MM-dd

The response returned from the service:

Parameter
Type
Description

Body

object

Details of the end of day data

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": {
        "EndOfDayId": 3417,
        "TotalCount": 4,
        "TotalAmount": 46.00,
        "SuccessfulCount": 0,
        "SuccessfulAmount": 0.00,
        "UnsuccessfulCount": 1,
        "UnsuccessfulAmount": 13.00,
        "RefundCount": 0,
        "RefundAmount": 0.00,
        "PartialRefundCount": 0,
        "PartialRefundAmount": 0.00,
        "CancelCount": 0,
        "CancelAmount": 0.00
    }
}

Last updated