Creates a new job work instruction.

Request Information

URI Parameters :

None.

Body Parameters :

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

Request Formats :

application/json, text/json

Sample:
{
  "id": "cdc662c3-a0e7-45ae-986e-52f4eaaab9fa",
  "jobs_id": "7ae94cfd-2268-450e-b5b7-3cd5e7041ebf",
  "equipment_family_id": "0d65e9e9-3d42-404c-8bed-9dbd24c2d272",
  "work_instruction_id": "d06e6860-8714-4bad-ab7d-d3cbc48d879b",
  "estimated_work_time": 5,
  "sequence": 6,
  "reference_back_office": "sample string 7",
  "modified_dateutc": "2026-09-14T00:34:48.2340799+00:00"
}

application/xml, text/xml

Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_family_id>0d65e9e9-3d42-404c-8bed-9dbd24c2d272</equipment_family_id>
  <estimated_work_time>5</estimated_work_time>
  <id>cdc662c3-a0e7-45ae-986e-52f4eaaab9fa</id>
  <jobs_id>7ae94cfd-2268-450e-b5b7-3cd5e7041ebf</jobs_id>
  <modified_dateutc>2026-09-14T00:34:48.234Z</modified_dateutc>
  <reference_back_office>sample string 7</reference_back_office>
  <sequence>6</sequence>
  <work_instruction_id>d06e6860-8714-4bad-ab7d-d3cbc48d879b</work_instruction_id>
</job_work_instruction>

Response Information

Resource Description :

IHttpActionResult containing the created job work instruction.

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": "c1e0190b-0c30-4a11-9be2-ae7bbce60a90",
  "jobs_id": "a381eba9-948a-4ff8-8cb3-a583b95b6b72",
  "equipment_family_id": "04a19adc-5acb-4320-b6d2-a666a88e0a23",
  "work_instruction_id": "b2a4b68e-18db-49c2-bf02-b9516d378e72",
  "estimated_work_time": 5,
  "sequence": 6,
  "reference_back_office": "sample string 7",
  "modified_dateutc": "2026-09-14T00:34:50.0131044+00:00"
}

application/xml, text/xml

Sample:
<job_work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <equipment_family_id>04a19adc-5acb-4320-b6d2-a666a88e0a23</equipment_family_id>
  <estimated_work_time>5</estimated_work_time>
  <id>c1e0190b-0c30-4a11-9be2-ae7bbce60a90</id>
  <jobs_id>a381eba9-948a-4ff8-8cb3-a583b95b6b72</jobs_id>
  <modified_dateutc>2026-09-14T00:34:50.013Z</modified_dateutc>
  <reference_back_office>sample string 7</reference_back_office>
  <sequence>6</sequence>
  <work_instruction_id>b2a4b68e-18db-49c2-bf02-b9516d378e72</work_instruction_id>
</job_work_instruction>