Retrieves the work instruction type options with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
work_instruction_type_options| Name | Description | Type | Additional 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": "a842a167-5d2a-40b2-a5a1-157856397f9f",
"work_instruction_type_id": "3a7ecabb-865d-44a2-8ebd-2dccd9192275",
"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-12T00:16:48.7868213+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>a842a167-5d2a-40b2-a5a1-157856397f9f</id> <label>sample string 4</label> <modified_dateutc>2026-01-12T00:16:48.786Z</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>3a7ecabb-865d-44a2-8ebd-2dccd9192275</work_instruction_type_id> </work_instruction_type_options>