Order Status

This page shows you how to make an API call to check the status of an order.

Properties

  • Name
    Type
    string
    Description

    Unique MPODx identifier for the order.


Making a Request

Include the headers in your request.

GET
/v1/orders/status
  curl -G https://api.mpodx.com/v1/orders/status?order_ref={order_ref} \
  -H "Authorization: Bearer {token}"

Get order status

This endpoint allows you to get the status of an order. Use the unique MPODx order reference number that is returned when the order was created.

Request URL


"https://api.mpodx.com/v1/orders/status?order_ref={order_ref}"

Response

{
  "message": "Get order status successfully",
  "status": "success",
  "data": {
      "order_ref": "K344455",
      "status": "Shipped"
  }
}

Was this page helpful?