Retrieves the work instruction type with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The work instruction type id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the work instruction type, or 404 Not Found if it doesn't exist.

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": "bf752597-5613-4a15-8e0c-1b2636805254",
  "name": "sample string 2",
  "archived": true,
  "modified_dateutc": "2026-09-16T10:15:20.6844921+00:00"
}

application/xml, text/xml

Sample:
<work_instruction_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <id>bf752597-5613-4a15-8e0c-1b2636805254</id>
  <modified_dateutc>2026-09-16T10:15:20.684Z</modified_dateutc>
  <name>sample string 2</name>
</work_instruction_type>