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

3. End-of-Day Data

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

End-of-Day Data

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

ร–nemli: Gรผn Sonu Verileri servisini kullanabilmeniz iรงin 'Header' alanฤฑnda 'apikeyprivate' ve You must include the apiclientprivate parameter in the request. 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

endofdaydate

date

Yes

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

Response returned from the service:

Parameter
Type
Description

Body

object

Detailed information about the end-of-day data

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