5. Delete Duplicate

Delete Recurring Payment

DELETE {{Base Adres}}/api/paywall/recurring/delete

Important: In order to use the "Delete Recurring Payment" service, you need to send the 'apikeypublic' and 'apiclientpublic' parameters in the 'Header' field.

PaymentAPI Address

ParameterTypeMandatoryDescription

apikeypublic

string

Yes

The Public Key obtained from the merchant panel.

apiclientpublic

string

Yes

The Public Client obtained from the merchant panel.

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

ParameterTypeMandatoryDescription

SubscriptionMerchantCode

string

Yes

The unique tracking number provided by your side for the recurring payment.

Sample to be sent to the service JSON and sample codes is as follows

{
    "SubscriptionMerchantCode": "tesat2merchantcode"
}

Parameters returned from the service:

ParameterTypeDescription

ErrorCode

int

Error code. It returns '0' if the operation is successful.

Result

bool

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

Message

string

If the operation is unsuccessful, this is the specified error message.

Body

object

No details are returned.

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

Last updated