Get order history

GET /orders/{order}/history

Requires view_orders permission

Headers

  • Account-ID string(uuid) Required

    Account ID - Can be found on the Dashboard under Settings → API Tokens

Path parameters

  • order string(uuid) Required

Query parameters

  • page integer

    Default value is 1.

  • per_page integer

    Default value is 15.

  • sort string

    Sort history entries. Use '-' prefix for descending order. Default: -created_at (newest first)

Responses

  • 200 application/json

    Order activity history

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
      • id string
      • log_name string
      • event string
      • properties object
      • created_at string(date-time)
    • meta object
  • 404

    Order not found

GET /orders/{order}/history
curl \
 --request GET 'https://api.gb.enjovia.app/orders/{order}/history' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Account-ID: string"
Response examples (200)
{
  "data": [
    {
      "id": "string",
      "log_name": "string",
      "event": "string",
      "properties": {},
      "created_at": "2025-05-04T09:42:00Z"
    }
  ],
  "links": {},
  "meta": {}
}