Check Order Status
The Check Order Status endpoint allows a merchant to manually verify the current status of an order by providing the order ID (order_id). This is useful in case of missing callbacks or integration debugging.
Once the request is made, the system will return full transaction details, including status, time, and product information.
Service EndpointsCopied!
Endpoint |
POST /api/check-order-status |
Request Header |
Authorization: Bearer <your_jwt_token_here> Content-Type: application/json |
Request ParametersCopied!
Name |
Type |
Required? |
Description |
---|---|---|---|
|
string |
Yes |
ID of the order |
Response ParametersCopied!
Name |
Type |
Description |
---|---|---|
|
string |
ID of the order |
|
string |
Status of the order. Status will always return as |
|
datetime |
Date and time that the order was submitted. |
|
Date and time that the order was completed. (null if still pending) |
|
|
number |
Quantity of the product in this order |
|
string |
ID of the product |
|
string |
Name of the product |
|
string |
Type of the product |
|
string |
ID of the deno |
|
string |
Name of the deno |
|
string |
Currency of the deno |
|
string |
Price of the deno |
|
string |
Player ID of the account to be reloaded. Will return null for PIN products. |
|
string |
Server of the account to be reloaded. Will return null for PIN products. |
|
string |
Special field of the account to be reloaded. Will return null for PIN products. |
|
string |
Pin code of the product. Will return null for RELOAD products. |
|
string |
Serial number of the product. Will return null for RELOAD products. |
|
string |
Encryption status |
|
string |
Error code |
|
string |
Message |
Sample RequestCopied!
{
"order_id": MDLE2M
}
Sample Response (RELOAD)Copied!
{
"order_id": MDLE2M,
"status": "success",
"error_code": null,
"quantity": 1,
"submit_time": "2025-03-05 19:16:19",
"complete_time": "2025-03-05 19:17:21",
"product_id": "ZZZ",
"product_name": "Zenless Zone Zero",
"product_type": "RELOAD",
"deno_id": "ZZZ60",
"deno_name": "Zenless Zone Zero - 60 Monochromes",
"deno_currency": "USD",
"deno_price": "0.77",
"encrypt_status": "false",
"user_id": "6218412984712",
"server": "Asia",
"special_field_A": null,
"deno_pin": null,
"deno_serial": null,
"message": "Transaction is being processed."
}
Sample Response (PIN)Copied!
{
"order_id": MDLE2M,
"status": "success",
"error_code": null,
"quantity": 1,
"submit_time": "2025-03-05 19:16:19",
"complete_time": "2025-03-05 19:17:21",
"product_id": "PSNUS",
"product_name": "Playstation Network Card US",
"product_type": "PIN",
"deno_id": "PSNUS10",
"deno_name": "Playstation Network Card US - 10 USD",
"deno_currency": "USD",
"deno_price": "9.20",
"encrypt_status": "false",
"user_id": null,
"server": null,
"special_field_A": null,
"deno_pin": "91231928731298",
"deno_serial": "6752722242242",
"message": "Transaction is being processed."
}