Retrieves the equipment family/skill link with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The equipment family/skill link id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the equipment family/skill link, or 404 Not Found if it doesn't exist.
equipment_family_skill_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| equipment_family_id |
Foreign key of the equipment family this required skill applies to. |
globally unique identifier | |
| skill_id |
Foreign key of the required skill. |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "09c1ecbf-9afb-47b6-b652-a1810501b558",
"equipment_family_id": "9d95554a-7d03-4329-9b26-ac28a668ae5b",
"skill_id": "2ded252c-b687-4b2b-a09f-fbd5912e725d",
"modified_dateutc": "2026-09-16T10:18:48.2913464+00:00"
}
application/xml, text/xml
Sample:
<equipment_family_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <equipment_family_id>9d95554a-7d03-4329-9b26-ac28a668ae5b</equipment_family_id> <id>09c1ecbf-9afb-47b6-b652-a1810501b558</id> <modified_dateutc>2026-09-16T10:18:48.291Z</modified_dateutc> <skill_id>2ded252c-b687-4b2b-a09f-fbd5912e725d</skill_id> </equipment_family_skill_list>