Updates the job work instruction detail with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The job work instruction detail id. |
globally unique identifier |
Required |
Body Parameters :
job_work_instruction_details| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| job_work_instruction_id |
Ref job workinstuction |
globally unique identifier | |
| work_instruction_details_id |
Ref work instruction details |
globally unique identifier | |
| work_instruction_action_type_id |
Ref work instruction type |
globally unique identifier | |
| description |
Description |
string | |
| sequence |
Sequence |
integer | |
| reference_back_office |
Ref back office |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| parent_id |
Parent id |
globally unique identifier | |
| is_group |
is_group flag |
boolean | |
| is_archived |
is_archived flag |
boolean | |
| type |
Kind of checklist step this represents (e.g. a simple check vs a measurement step), controlling how it is rendered. |
string | |
| db_report_type_id |
Foreign key of the report type to use when this step requires filling in a report. |
globally unique identifier | |
| instruction_document_count |
Number of reference documents attached to this instruction step. |
integer | |
| show_ok |
Indicates the "OK" outcome option is offered to the technician for this step. |
boolean | |
| show_nok |
Indicates the "Not OK" outcome option is offered to the technician for this step. |
boolean | |
| show_replaced |
Indicates the "Replaced" outcome option is offered to the technician for this step. |
boolean | |
| show_na |
Indicates the "Not Applicable" outcome option is offered to the technician for this step. |
boolean | |
| db_file_id |
Foreign key of a reference file/document attached to this instruction step. |
globally unique identifier | |
| work_instruction_type_id |
Foreign key of the work instruction type controlling which outcome options are available (see ). |
globally unique identifier | |
| show_options |
Serialized set of outcome options enabled for this step, when they differ from the defaults defined by . |
string |
Request Formats :
application/json, text/json
{
"id": "368685f8-b72e-4d7d-8d91-6d041361754b",
"job_work_instruction_id": "747739a6-7fc3-4450-bd1a-39625448058a",
"work_instruction_details_id": "2caa307f-037a-491b-9553-e2fb7f1f1cd8",
"work_instruction_action_type_id": "c7126d2a-a9b0-4c78-adba-6e115cacea41",
"description": "sample string 5",
"sequence": 6,
"reference_back_office": "sample string 7",
"modified_dateutc": "2026-09-16T09:25:11.9087647+00:00",
"parent_id": "6d35d4ed-7161-4e2e-ab96-332802f25e4f",
"is_group": true,
"is_archived": true,
"type": "sample string 12",
"db_report_type_id": "3328f65c-ee11-4803-ad34-e10813a00f5f",
"instruction_document_count": 14,
"show_ok": true,
"show_nok": true,
"show_replaced": true,
"show_na": true,
"db_file_id": "ccce9802-8978-4a45-967e-224ece82c5e1",
"work_instruction_type_id": "09ebd520-2222-499a-aaf7-7a92f11dbd6e",
"show_options": "sample string 21"
}
application/xml, text/xml
<job_work_instruction_details xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_file_id>ccce9802-8978-4a45-967e-224ece82c5e1</db_file_id> <db_report_type_id>3328f65c-ee11-4803-ad34-e10813a00f5f</db_report_type_id> <description>sample string 5</description> <id>368685f8-b72e-4d7d-8d91-6d041361754b</id> <instruction_document_count>14</instruction_document_count> <is_archived>true</is_archived> <is_group>true</is_group> <job_work_instruction_id>747739a6-7fc3-4450-bd1a-39625448058a</job_work_instruction_id> <modified_dateutc>2026-09-16T09:25:11.908Z</modified_dateutc> <parent_id>6d35d4ed-7161-4e2e-ab96-332802f25e4f</parent_id> <reference_back_office>sample string 7</reference_back_office> <sequence>6</sequence> <show_na>true</show_na> <show_nok>true</show_nok> <show_ok>true</show_ok> <show_options>sample string 21</show_options> <show_replaced>true</show_replaced> <type>sample string 12</type> <work_instruction_action_type_id>c7126d2a-a9b0-4c78-adba-6e115cacea41</work_instruction_action_type_id> <work_instruction_details_id>2caa307f-037a-491b-9553-e2fb7f1f1cd8</work_instruction_details_id> <work_instruction_type_id>09ebd520-2222-499a-aaf7-7a92f11dbd6e</work_instruction_type_id> </job_work_instruction_details>
Response Information
Resource Description :
IHttpActionResult containing the updated job work instruction detail.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.