GET api/skills/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Skills| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| ProficiencyLevel | decimal number |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "52b271ed-f239-47c7-b1a1-c47682543b41",
"Name": "sample string 2",
"Description": "sample string 3",
"ProficiencyLevel": 1.0,
"Id": "65109189-df23-4dde-9421-4308b5ef3528",
"CreatedDate": "2025-12-05T20:26:15.2188371-08:00",
"ModifiedDate": "2025-12-05T20:26:15.2188371-08:00",
"DeletedDate": "2025-12-05T20:26:15.2188371-08:00"
}
application/xml, text/xml
Sample:
<Skills xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:26:15.2188371-08:00</CreatedDate> <DeletedDate>2025-12-05T20:26:15.2188371-08:00</DeletedDate> <Id>65109189-df23-4dde-9421-4308b5ef3528</Id> <ModifiedDate>2025-12-05T20:26:15.2188371-08:00</ModifiedDate> <Description>sample string 3</Description> <Name>sample string 2</Name> <ProficiencyLevel>1</ProficiencyLevel> <ProfileId>52b271ed-f239-47c7-b1a1-c47682543b41</ProfileId> </Skills>