Valuekeep DevelopmentWork
DevelopmentWork
Work
Back | List of Articles

How to obtain a list of work orders by OData?

Last changed in 24/02/2026

In all Entities we have the possibility of making Odata requests.

Syntax

In Odata requests you must pay attention to the following syntax:
  1. $select: expression that determines which request fields are included in the result;
  2. $filter: expression used to restrict the information sent in the
    request;
  3. $orderby: expression used to organize the information sent;
  4. $skip: expression which ignores the first records. Example $skip = 100 - ignores the first 100 records;
  5. $Top: expression that returns the first N request records;
  6. $expand: expression that allows you to relate entities, for example
    get the list of consumptions and respective parts consumed.
When making Odata requests there are two expressions that must be used:
  1. $select:mandatory expression, must indicate which fields you want to get;
  2. $filter: as we limit the number of records per request to 100, we recommend you filter by the ModifiedOn field, so that you only get new or modified records.

Examples

Below you will find a set of examples of Odata requests for work orders:
Odata request to obtain work order information
Odata request to obtain work order information ignoring the first 100 records
Odata request to obtain work order information ignoring the first 100 records and filtering by WO status

Fields placed in the Select field must begin with Uppercase letters. Refer to the support article to find out which fields to use in the Select expression.

Bookmark or share this article
Esta página foi útil?
Obrigado pelo seu voto.
Related Articles
How to create or delete work orders? How to update a work order? How to change the status of the work order? How to create a monitoring? How to get the failure list?