Skip to content

Order Management System REST API - Order Controller

The order URI provides access to known Orders.

GET /order

Retrieves all Orders known to OMS.

Requires the Operator or Admin feature permissions.

ParameterExpectedDescription
asAtOptionalAn ISO8601 date and time. The results returned will be those at the given timestamp. If omitted, returns the latest results.
onlyActiveOptionalBoolean. When true, only returns orders that remain active. Orders with a status marked IsComplete will be omitted.
CodeStatusDescription
200SuccessContent is an array of OrderState objects.
403FailureThe authenticated identity does not have the Admin permission.