Retrieves all work instruction types, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of work instruction types.

work_instruction_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this work instruction type.

string
archived

Indicates whether this work instruction type has been archived (no longer selectable).

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e22d9f9f-9203-4a18-9556-b8b9bbccc451",
  "name": "sample string 2",
  "archived": true,
  "modified_dateutc": "2026-09-16T08:35:04.24205+00:00"
}

application/xml, text/xml

Sample:
<work_instruction_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <id>e22d9f9f-9203-4a18-9556-b8b9bbccc451</id>
  <modified_dateutc>2026-09-16T08:35:04.242Z</modified_dateutc>
  <name>sample string 2</name>
</work_instruction_type>