Retrieves all job work instruction
Request Information
URI Parameters :
None.
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": "e0503713-8c83-4d4c-a356-23bfc6f0f315",
"jobs_id": "979243ea-3505-4950-8803-beeb63885cf6",
"equipment_family_id": "c933c85e-1b91-49e8-9af6-0747869a9f46",
"work_instruction_id": "8f921df6-f915-4636-b3f6-5bf8baa4d263",
"estimated_work_time": 5,
"sequence": 6,
"reference_back_office": "sample string 7",
"modified_dateutc": "2026-06-16T21:18:31.388516+00:00"
}
application/xml, text/xml
Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_family_id>c933c85e-1b91-49e8-9af6-0747869a9f46</equipment_family_id> <estimated_work_time>5</estimated_work_time> <id>e0503713-8c83-4d4c-a356-23bfc6f0f315</id> <jobs_id>979243ea-3505-4950-8803-beeb63885cf6</jobs_id> <modified_dateutc>2026-06-16T21:18:31.388Z</modified_dateutc> <reference_back_office>sample string 7</reference_back_office> <sequence>6</sequence> <work_instruction_id>8f921df6-f915-4636-b3f6-5bf8baa4d263</work_instruction_id> </job_work_instruction>