Retrieves all work instruction/skill links, 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/skill links.
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": "55c30bbd-a08b-4ed4-b4b6-8fc03ea348d8",
"work_instruction_id": "ab673e7b-49f2-4e85-aaae-2c74120bf7ef",
"skill_id": "5acf6f8f-12a5-419d-93f8-df3ee037711e",
"reference_back_office": "sample string 4",
"modified_dateutc": "2026-09-16T08:35:18.5426502+00:00"
}
application/xml, text/xml
Sample:
<work_instruction_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>55c30bbd-a08b-4ed4-b4b6-8fc03ea348d8</id> <modified_dateutc>2026-09-16T08:35:18.542Z</modified_dateutc> <reference_back_office>sample string 4</reference_back_office> <skill_id>5acf6f8f-12a5-419d-93f8-df3ee037711e</skill_id> <work_instruction_id>ab673e7b-49f2-4e85-aaae-2c74120bf7ef</work_instruction_id> </work_instruction_skill_list>