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

Payment Cancel API

This API is implemented to cancel an unpaid payment. Payment can not be cancelled when there is a blockchain's transaction associated with it. In that case, the following error response will be thrown. { errors: 2024 }

The cancellation status can be checked in Admin Payment History page.

API Spec

Cancel an unpaid payment

POST https://app.nodexpay.com/api/v1/payment/cancel

Request Body

Name
Type
Description

identification_token*

String

"Authentication Token" can be obtained from the Business Client Management screen

order_code*

String

The value set by the business client to uniquely identify the payment

verify_token*

String

The value obtained by hashing the string 'order_code::amount::Hash Token' with SHA256 if amount is not null.

In case amount is null, hashing the string 'order_code::::Hash Token' with SHA256.

"Hash Token" can be obtained from the Business Client Management screen

{
    // Response
}

Last updated