6. Retry

You can use this service to put the earning payments, for which you know the earning ID, back into the payment queue.

Retry by Earning

PUT {{Base Adres}}/api/paywall/marketplace/earning/put/retry/product

Important: To use the Retry by Earning service, you need to send the parameters apikeypublic and apiclientpublic in the request header. PaymentAPI Address

Parameter
Type
Compolsory
Description

apikeypublic

string

Yes

Public Key obtained from your merchant panel.

apiclientpublic

string

Yes

Public Client obtained from your merchant panel.

Parameters to be sent to the service are as follows:

Parameter
Type
Description

Id

int

Parameters to be sent to the service are as follows:

ChangeReflectionDate

bool

If you want to change the date on which the earning payment will be made, you can send 'True'.

ReflectionDate

DateTime

The date you want the earning to be paid.

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, supporting localization based on the locale parameter.

Body

object

Detailed information about the transaction

{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": null
}

Last updated