Skip to content

Order Histories

Order histories track all status changes for your orders over time.

List Order Histories

GET/order-histories Bearer Token — view orders

Retrieve a paginated list of order status change history.

ParameterTypeRequiredDescription
per_pagenumberNoResults per page

Response

Success (200):

json
{
  "data": [
    {
      "order_reference": "ORD-00001",
      "old_status": "NEW",
      "new_status": "SHIPPED",
      "changed_by": "Admin Name",
      "changed_at": "2025-01-16T09:00:00Z"
    },
    {
      "order_reference": "ORD-00002",
      "old_status": "SHIPPED",
      "new_status": "DELIVERED",
      "changed_by": "System",
      "changed_at": "2025-01-17T14:30:00Z"
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 50,
      "total": 180,
      "pages": 4
    }
  }
}

INFO

Only list is exposed on the API. There is no GET /order-histories/{id}/show endpoint.

wedoCOD API Documentation