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": "18484e5b-b076-40cf-af2a-86fd9f931d76",
"work_instruction_type_id": "e72c43d4-eaf1-4228-8822-04a96fe131f2",
"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-03-07T13:16:58.1907692+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>18484e5b-b076-40cf-af2a-86fd9f931d76</id> <label>sample string 4</label> <modified_dateutc>2026-03-07T13:16:58.190Z</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>e72c43d4-eaf1-4228-8822-04a96fe131f2</work_instruction_type_id> </work_instruction_type_options>