Retrieves the work instruction with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
work_instruction| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| job_type_id |
Job type |
globally unique identifier | |
| skill_id |
Skill |
globally unique identifier | |
| name |
Name of the work instruction |
string | |
| description |
Work description |
string | |
| additional_information |
Additional info |
string | |
| equipment_family_id |
Equipment family |
globally unique identifier | |
| filter_on_job_type |
Filter on job type |
boolean | |
| filter_on_equipment_family |
Filter on equipment family |
boolean | |
| estimated_work_time |
Estimated working time |
integer | |
| sys_has_skills |
Check skill |
boolean | |
| reference_back_office |
Ref back office |
string | |
| sales_organization_id |
Sale organization id |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| is_required |
is_required flag |
boolean | |
| is_archived |
is_archived flag |
boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "fab88a72-ec29-438a-8202-47cc78a6c267",
"job_type_id": "18007ce1-a0fb-45dd-8e1f-6b94ca51beb4",
"skill_id": "f26b27f2-9db8-4e15-b2da-548948b496a4",
"name": "sample string 4",
"description": "sample string 5",
"additional_information": "sample string 6",
"equipment_family_id": "955605e6-a818-4034-a5e2-ee07321d9ddf",
"filter_on_job_type": true,
"filter_on_equipment_family": true,
"estimated_work_time": 10,
"sys_has_skills": true,
"reference_back_office": "sample string 12",
"sales_organization_id": "85022fa9-0923-4c38-a7b1-89914066f4ee",
"modified_dateutc": "2026-06-16T21:24:48.4839041+00:00",
"is_required": true,
"is_archived": true
}
application/xml, text/xml
Sample:
<work_instruction xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <additional_information>sample string 6</additional_information> <description>sample string 5</description> <equipment_family_id>955605e6-a818-4034-a5e2-ee07321d9ddf</equipment_family_id> <estimated_work_time>10</estimated_work_time> <filter_on_equipment_family>true</filter_on_equipment_family> <filter_on_job_type>true</filter_on_job_type> <id>fab88a72-ec29-438a-8202-47cc78a6c267</id> <is_archived>true</is_archived> <is_required>true</is_required> <job_type_id>18007ce1-a0fb-45dd-8e1f-6b94ca51beb4</job_type_id> <modified_dateutc>2026-06-16T21:24:48.483Z</modified_dateutc> <name>sample string 4</name> <reference_back_office>sample string 12</reference_back_office> <sales_organization_id>85022fa9-0923-4c38-a7b1-89914066f4ee</sales_organization_id> <skill_id>f26b27f2-9db8-4e15-b2da-548948b496a4</skill_id> <sys_has_skills>true</sys_has_skills> </work_instruction>