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

1. Product-Based

Confirm Payment Based on Product

POST {{Base Adres}}/api/paywall/marketplace/approve/pw/product

Important: To use the Payment service, you must include the apikeypublic and apiclientpublic parameters in the Header section.

PaymentAPI Address

Parameter
Type
Compulsory
Description

apikeypublic

string

Yes

Public Key obtained from the merchant panel.

apiclientpublic

string

Yes

Public Client obtained from the merchant panel.

The parameters to be sent to the service are as follows:

Parameter
Type
Compulsory
Description

PaymentId

int

Yes

The payment's ID information on the Paywall side should be used.

ProductIds

List<int>

Yes

The ID information of the product(s) sent during the payment must be used in the Paywall system. This ID is returned in the response related to the product.

If you cannot store these ID details on your side, you can use the "Payment-Based" confirmation method.

Payout

PayoutModel

No

Settings that can be configured at the time of earnings distribution related to the payment are included under this parameter. For example, a special note can be added to the payment receipt at the time of the money transfer.

You can review the following JSON to see the values it accepts.

SameReflectionDateWithMember

bool

No

If you want your marketplace earnings to be realized on the same day as your sub-merchant’s settlement date, you must send this parameter as true.

  • The settlement day is always based on the sub-merchant’s settlement date.

    • For example: if the sub-merchant’s settlement date is 01.01 and yours is 05.01, with this parameter both the sub-merchant’s and the platform’s settlement date will be 01.01.

  • This parameter is valid only for a single sub-merchant. If there is more than one sub-merchant in the payment request, the parameter will be ignored.

The example JSON and sample codes to be sent to the service are as follows:

{
    "PaymentId": 1784197,
    "SameReflectionDateWithMember": false,
    "ProductIds": [
        1626127,
        1626128,
        1626129,
        1626130,
        1626131
    ],
    "Payout": {
        "DescriptionApply": true,
        "Description": "Ödemeye özel para transferi açıklaması"
    }
}
// Soon
// Soon
// Soon
// Soon
// Soon
// Soon

Response returned from the service:

Parameter
Type
Description

ErrorCode

int

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

Result

bool

Returns a true or false value. Returns 'true' if the operation is successful.

Message

string

If the operation fails, this is the message describing the error, and it supports localization based on the locale parameter.

Body

object

Detailed information about the transaction

Last updated