Retrieves the work instruction/skill link with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The work instruction/skill link id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the work instruction/skill link, or 404 Not Found if it doesn't exist.
work_instruction_skill_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| work_instruction_id |
Foreign key of the work instruction this required skill applies to. |
globally unique identifier | |
| skill_id |
Foreign key of the required skill. |
globally unique identifier | |
| reference_back_office |
Field used for Embedded entity (store there your ERP PK) |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "ecdf5eab-4407-4c6f-a339-a0a816ae995f",
"work_instruction_id": "a7635aa7-e1e3-4834-8bcd-8a66c0405919",
"skill_id": "843b6db3-a3da-46f2-8fda-eabeaae7bf26",
"reference_back_office": "sample string 4",
"modified_dateutc": "2026-09-16T10:16:40.7281581+00:00"
}
application/xml, text/xml
Sample:
<work_instruction_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>ecdf5eab-4407-4c6f-a339-a0a816ae995f</id> <modified_dateutc>2026-09-16T10:16:40.728Z</modified_dateutc> <reference_back_office>sample string 4</reference_back_office> <skill_id>843b6db3-a3da-46f2-8fda-eabeaae7bf26</skill_id> <work_instruction_id>a7635aa7-e1e3-4834-8bcd-8a66c0405919</work_instruction_id> </work_instruction_skill_list>