Retrieves the job work instruction 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
job_work_instruction| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| jobs_id |
Ref job |
globally unique identifier | |
| equipment_family_id |
Ref equipment family |
globally unique identifier | |
| work_instruction_id |
Ref work instruction |
globally unique identifier | |
| estimated_work_time |
Estimated working time |
integer | |
| 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 |
Response Formats
application/json, text/json
Sample:
{
"id": "2b2f9e7b-1e14-4c3a-a8f3-fd71bb431ba7",
"jobs_id": "e7b62871-6acc-4aea-aec9-8744b674bbe3",
"equipment_family_id": "ab76d309-9a18-4402-afe9-5d73c48de8d2",
"work_instruction_id": "73b9d290-272c-40f0-a8fd-4cf582b1e3ca",
"estimated_work_time": 5,
"sequence": 6,
"reference_back_office": "sample string 7",
"modified_dateutc": "2026-03-07T14:53:42.0402965+00:00"
}
application/xml, text/xml
Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_family_id>ab76d309-9a18-4402-afe9-5d73c48de8d2</equipment_family_id> <estimated_work_time>5</estimated_work_time> <id>2b2f9e7b-1e14-4c3a-a8f3-fd71bb431ba7</id> <jobs_id>e7b62871-6acc-4aea-aec9-8744b674bbe3</jobs_id> <modified_dateutc>2026-03-07T14:53:42.040Z</modified_dateutc> <reference_back_office>sample string 7</reference_back_office> <sequence>6</sequence> <work_instruction_id>73b9d290-272c-40f0-a8fd-4cf582b1e3ca</work_instruction_id> </job_work_instruction>