Retrieves the job work instruction with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The job work instruction id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the job work instruction, or 404 Not Found if it doesn't exist.

job_work_instruction
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
jobs_id

Foreign key of the job this work instruction is attached to.

globally unique identifier
equipment_family_id

Foreign key of the equipment family this work instruction applies to.

globally unique identifier
work_instruction_id

Foreign key of the work instruction template this record was generated from.

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": "48183c69-0bbe-42eb-8ecc-7a11d1eee8df",
  "jobs_id": "286e70f6-84aa-4ebe-84f7-6e4f0129de14",
  "equipment_family_id": "dfb97fd8-2d9f-4c69-9f29-a97af4aa2080",
  "work_instruction_id": "3b38a4cd-92f1-419f-b1af-434dd930a3e7",
  "estimated_work_time": 5,
  "sequence": 6,
  "reference_back_office": "sample string 7",
  "modified_dateutc": "2026-09-16T11:04:40.8975395+00:00"
}

application/xml, text/xml

Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_family_id>dfb97fd8-2d9f-4c69-9f29-a97af4aa2080</equipment_family_id>
  <estimated_work_time>5</estimated_work_time>
  <id>48183c69-0bbe-42eb-8ecc-7a11d1eee8df</id>
  <jobs_id>286e70f6-84aa-4ebe-84f7-6e4f0129de14</jobs_id>
  <modified_dateutc>2026-09-16T11:04:40.897Z</modified_dateutc>
  <reference_back_office>sample string 7</reference_back_office>
  <sequence>6</sequence>
  <work_instruction_id>3b38a4cd-92f1-419f-b1af-434dd930a3e7</work_instruction_id>
</job_work_instruction>