Retrieves the work instruction type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

work_instruction_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

string
archived

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "da5f4b93-5fc8-4927-bdec-3a5866ae4031",
  "name": "sample string 2",
  "archived": true,
  "modified_dateutc": "2026-06-16T21:21:48.9329437+00:00"
}

application/xml, text/xml

Sample:
<work_instruction_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <id>da5f4b93-5fc8-4927-bdec-3a5866ae4031</id>
  <modified_dateutc>2026-06-16T21:21:48.932Z</modified_dateutc>
  <name>sample string 2</name>
</work_instruction_type>