Skip to content

Order Management System REST API - Order Controller

The order/for/<owner>/<account> URI provides access to known Orders for a specific Trading Account.

GET /order/for/<owner>/<account>

Retrieves all Orders for the Trading Account known to OMS.

ParameterDescription
ownerA URL-encoded Owner Code.
accountA URL-encoded Account ID unique to the Owner.
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.
404FailureOwner or Trading Account does not exist, or the authenticated identity does not have permission to see this Trading Account.