ZULMAI API Connect
  1. Order
ZULMAI API Connect
  • Zulmai Public API
    • Account
      • Get account information
    • Products
      • Get product list
    • Order
      • Create new order
        POST
      • Check order status
        POST
  • Zulmai Public API
    • Account
      • Get account information
    • Products
      • Get product list
    • Order
      • Create new order
      • Check order status
  1. Order

Check order status

POST
/api/order/status
Mengecek status pesanan berdasarkan API Key, Secret Key, dan ID pesanan.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Response sukses
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://zulmai.id/api/order/status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "api_key": "1234567890abcdef",
    "secret_key": "abcdef1234567890",
    "id": 1
}'
Response Response Example
200 - Example 1
{
    "status": true,
    "data": {
        "success": "pesanan ditemukan",
        "id": 1,
        "product_code": "A1",
        "product_name": "Produk A1",
        "target": "xxxx",
        "price": "150",
        "status": "success",
        "serial_number": "Sedang diproses...",
        "initial_balance": "980",
        "final_balance": "830",
        "created_at": "2025-11-09 19:43:58",
        "updated_at": "2025-11-09 19:43:58"
    }
}
Modified at 2025-11-14 02:16:00
Previous
Create new order
Next
Get account information
Built with