Retrieves all job work instructions, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of job work instructions.

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": "ad442ff9-5e8e-4fef-8cad-36f4ff0d9a9f",
  "jobs_id": "46299a54-a01e-4c91-ad15-75c2f15136ac",
  "equipment_family_id": "606015d6-824a-4782-9e33-eae795c0206b",
  "work_instruction_id": "20af0e52-26c4-48a2-932b-33bd3626a9e8",
  "estimated_work_time": 5,
  "sequence": 6,
  "reference_back_office": "sample string 7",
  "modified_dateutc": "2026-09-16T10:13:13.7197648+00:00"
}

application/xml, text/xml

Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_family_id>606015d6-824a-4782-9e33-eae795c0206b</equipment_family_id>
  <estimated_work_time>5</estimated_work_time>
  <id>ad442ff9-5e8e-4fef-8cad-36f4ff0d9a9f</id>
  <jobs_id>46299a54-a01e-4c91-ad15-75c2f15136ac</jobs_id>
  <modified_dateutc>2026-09-16T10:13:13.719Z</modified_dateutc>
  <reference_back_office>sample string 7</reference_back_office>
  <sequence>6</sequence>
  <work_instruction_id>20af0e52-26c4-48a2-932b-33bd3626a9e8</work_instruction_id>
</job_work_instruction>