Retrieves all work instruction detail steps, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of work instruction detail steps.

work_instruction_details
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
work_instruction_id

Ref work instruction

globally unique identifier
work_instruction_action_type_id

Ref work instruction action type

globally unique identifier
description

Description

string
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
parent_id

Parent id

globally unique identifier
is_group

is_group flag

boolean
is_archived

is_archived flag

boolean
type

Kind of checklist step this represents (e.g. a simple check vs a measurement step), controlling how it is rendered.

string
db_report_type_id

Foreign key of the report type to use when this step requires filling in a report.

globally unique identifier
instruction_document_count

Number of reference documents attached to this instruction step.

integer
show_ok

Indicates the "OK" outcome option is offered to the technician for this step.

boolean
show_nok

Indicates the "Not OK" outcome option is offered to the technician for this step.

boolean
show_replaced

Indicates the "Replaced" outcome option is offered to the technician for this step.

boolean
show_na

Indicates the "Not Applicable" outcome option is offered to the technician for this step.

boolean
db_file_id

Foreign key of a reference file/document attached to this instruction step.

globally unique identifier
work_instruction_type_id

Foreign key of the work instruction type controlling which outcome options are available (see ).

globally unique identifier
show_options

Serialized set of outcome options enabled for this step, when they differ from the defaults defined by .

string

Response Formats

application/json, text/json

Sample:
{
  "id": "93297f65-f2d6-4756-94cc-0ce46efb88ed",
  "work_instruction_id": "3e4e0e17-4277-446f-bd1a-0875716a6a16",
  "work_instruction_action_type_id": "773dc878-5ade-4d96-bc96-c354fed8ea0a",
  "description": "sample string 4",
  "sequence": 5,
  "reference_back_office": "sample string 6",
  "modified_dateutc": "2026-09-16T10:15:53.667382+00:00",
  "parent_id": "59687746-b753-4781-9fd9-bcd577d726df",
  "is_group": true,
  "is_archived": true,
  "type": "sample string 11",
  "db_report_type_id": "509e2eb1-a7db-4e3e-83be-038ea769a480",
  "instruction_document_count": 13,
  "show_ok": true,
  "show_nok": true,
  "show_replaced": true,
  "show_na": true,
  "db_file_id": "5ae4dce6-5040-47aa-b679-ae9682482a42",
  "work_instruction_type_id": "98ad9b43-58e2-45e1-8ab8-6ede09671738",
  "show_options": "sample string 20"
}

application/xml, text/xml

Sample:
<work_instruction_details xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_file_id>5ae4dce6-5040-47aa-b679-ae9682482a42</db_file_id>
  <db_report_type_id>509e2eb1-a7db-4e3e-83be-038ea769a480</db_report_type_id>
  <description>sample string 4</description>
  <id>93297f65-f2d6-4756-94cc-0ce46efb88ed</id>
  <instruction_document_count>13</instruction_document_count>
  <is_archived>true</is_archived>
  <is_group>true</is_group>
  <modified_dateutc>2026-09-16T10:15:53.667Z</modified_dateutc>
  <parent_id>59687746-b753-4781-9fd9-bcd577d726df</parent_id>
  <reference_back_office>sample string 6</reference_back_office>
  <sequence>5</sequence>
  <show_na>true</show_na>
  <show_nok>true</show_nok>
  <show_ok>true</show_ok>
  <show_options>sample string 20</show_options>
  <show_replaced>true</show_replaced>
  <type>sample string 11</type>
  <work_instruction_action_type_id>773dc878-5ade-4d96-bc96-c354fed8ea0a</work_instruction_action_type_id>
  <work_instruction_id>3e4e0e17-4277-446f-bd1a-0875716a6a16</work_instruction_id>
  <work_instruction_type_id>98ad9b43-58e2-45e1-8ab8-6ede09671738</work_instruction_type_id>
</work_instruction_details>