Retrieves all work instruction type options

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

work_instruction_type_options
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
work_instruction_type_id

globally unique identifier
name

string
label

string
fill_color

string
help_text

string
text_1_enabled

boolean
text_1_label

string
text_1_required

boolean
text_2_enabled

boolean
text_2_label

string
text_2_required

boolean
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": "c1f38fe1-ce3c-4fc7-b5d6-0fbc1bfb6ab4",
  "work_instruction_type_id": "0d084505-b5a3-40bb-a6ed-6f93bfcc4748",
  "name": "sample string 3",
  "label": "sample string 4",
  "fill_color": "sample string 5",
  "help_text": "sample string 6",
  "text_1_enabled": true,
  "text_1_label": "sample string 8",
  "text_1_required": true,
  "text_2_enabled": true,
  "text_2_label": "sample string 11",
  "text_2_required": true,
  "archived": true,
  "modified_dateutc": "2026-01-11T21:00:49.4458355+00:00"
}

application/xml, text/xml

Sample:
<work_instruction_type_options xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <fill_color>sample string 5</fill_color>
  <help_text>sample string 6</help_text>
  <id>c1f38fe1-ce3c-4fc7-b5d6-0fbc1bfb6ab4</id>
  <label>sample string 4</label>
  <modified_dateutc>2026-01-11T21:00:49.445Z</modified_dateutc>
  <name>sample string 3</name>
  <text_1_enabled>true</text_1_enabled>
  <text_1_label>sample string 8</text_1_label>
  <text_1_required>true</text_1_required>
  <text_2_enabled>true</text_2_enabled>
  <text_2_label>sample string 11</text_2_label>
  <text_2_required>true</text_2_required>
  <work_instruction_type_id>0d084505-b5a3-40bb-a6ed-6f93bfcc4748</work_instruction_type_id>
</work_instruction_type_options>