Retrieves all work instruction type options, 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 type options.
work_instruction_type_options| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| work_instruction_type_id |
Foreign key of the work instruction type this option belongs to. |
globally unique identifier | |
| name |
Internal name/code identifying this option. |
string | |
| label |
Display label shown to the technician for this option. |
string | |
| fill_color |
Display color (e.g. hex code) used to render this option in the UI. |
string | |
| help_text |
Help text shown to the technician to explain this option. |
string | |
| text_1_enabled |
Indicates a first free-text field should be shown when this option is selected. |
boolean | |
| text_1_label |
Display label of the first free-text field (see ). |
string | |
| text_1_required |
Indicates the first free-text field must be filled in when this option is selected. |
boolean | |
| text_2_enabled |
Indicates a second free-text field should be shown when this option is selected. |
boolean | |
| text_2_label |
Display label of the second free-text field (see ). |
string | |
| text_2_required |
Indicates the second free-text field must be filled in when this option is selected. |
boolean | |
| archived |
Indicates whether this option 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
{
"id": "08f4d414-d6c0-4371-8b71-c208512f10e8",
"work_instruction_type_id": "1e753793-4f3f-4036-8231-9a2fb43c0c83",
"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-09-16T08:34:26.891539+00:00"
}
application/xml, text/xml
<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>08f4d414-d6c0-4371-8b71-c208512f10e8</id> <label>sample string 4</label> <modified_dateutc>2026-09-16T08:34:26.891Z</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>1e753793-4f3f-4036-8231-9a2fb43c0c83</work_instruction_type_id> </work_instruction_type_options>