1.Approval Status

Payment-based product approval statuses.

GET {{PaymentBaseAddress}}/api/paywall/marketplace/report/approval

Important: To use the payment service, you need to send the 'apikeypublic' and 'apiclientpublic' parameters in the 'Header' section.

PaymentAPI Address

ParameterTypeRequiredDescription

apikeypublic

string

Yes

The Public Key obtained from the merchant panel.

apiclientpublic

string

Yes

The Public Client obtained from the merchant panel.

paymentid

int

Yes

The Id information related to the payment in the PayWall.

The response returned from the service:

ParameterTypeDescription

ErrorCode

int

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

Result

bool

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

Message

string

If the operation is unsuccessful, this is the error message provided, offering language support based on the locale parameter.

Body

nesne

Operation details.

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "Approved": [],
        "NotApproved": [
            {
                "ProductId": 1626240
            },
            {
                "ProductId": 1626241
            },
            {
                "ProductId": 1626242
            },
            {
                "ProductId": 1626243
            },
            {
                "ProductId": 1626244
            },
            {
                "ProductId": 1626245
            },
            {
                "ProductId": 1626246
            }
        ]
    }
}

Last updated