Retrieves all the user_skill_list objects
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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": "a959fa4b-a044-4981-8a1c-9393a9c0e4d7",
"user_id": "f50d0e9c-1fa7-49a7-80e8-bf4a1d353221",
"skill_id": "e561a25f-871b-4b1a-90bf-5bcd8d57c65c",
"modified_dateutc": "2026-01-11T21:00:47.4056478+00:00"
}
application/xml, text/xml
Sample:
<user_skill_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>a959fa4b-a044-4981-8a1c-9393a9c0e4d7</id> <modified_dateutc>2026-01-11T21:00:47.405Z</modified_dateutc> <skill_id>e561a25f-871b-4b1a-90bf-5bcd8d57c65c</skill_id> <user_id>f50d0e9c-1fa7-49a7-80e8-bf4a1d353221</user_id> </user_skill_list>