Order Status

Detailed documentation on how to verify status of an order

Verify order status

Good to know: To verify the status of an order, first the order reference must be encrypted using RSA encryption PKCS#1 v1.5 then encrypted data is used to verify the order status.

Data to be encrypted

// data to be encrypted
{
    "reference": "WESOCMOCMOVMOCWMOWMO"
}

Order status

POST https://localhost/checkout/order/status

view order status with encrypted reference

Headers

Name
Type
Description

api-key*

String

public api key

Request Body

Name
Type
Description

data*

String

encrypted data

{
    "status": "failed",
    "status_code": "13",
    "message": "Order not found at the moment"
}

Last updated