Retrieves the user/skill link with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The user/skill link id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the user/skill link, or 404 Not Found if it doesn't exist.
user_skill_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| user_id |
Foreign key to user |
globally unique identifier |
Optionally required : user_id, user_code or user must be provided |
| skill_id |
Foreign key to skill |
globally unique identifier |
Optionally required : skill_id, skill_code or skill must be provided |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "8cd3d1a9-469e-446d-a997-7f1666116241",
"user_id": "9ecb13ff-a4e9-40b1-affe-91420794d798",
"skill_id": "896567bd-03f2-4819-8218-82c6ee586b51",
"modified_dateutc": "2026-09-16T11:03:56.2497071+00:00"
}
application/xml, text/xml
Sample:
<user_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>8cd3d1a9-469e-446d-a997-7f1666116241</id> <modified_dateutc>2026-09-16T11:03:56.249Z</modified_dateutc> <skill_id>896567bd-03f2-4819-8218-82c6ee586b51</skill_id> <user_id>9ecb13ff-a4e9-40b1-affe-91420794d798</user_id> </user_skill_list>