GET api/skills/byprofileid?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Skills
NameDescriptionTypeAdditional 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": "f4876c76-3af9-45d3-8ffa-9a6a711d6940",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "ProficiencyLevel": 1.0,
    "Id": "dc986575-76af-411d-9e12-3c66ed1cd10a",
    "CreatedDate": "2025-12-05T20:26:14.2082584-08:00",
    "ModifiedDate": "2025-12-05T20:26:14.2082584-08:00",
    "DeletedDate": "2025-12-05T20:26:14.2082584-08:00"
  },
  {
    "ProfileId": "f4876c76-3af9-45d3-8ffa-9a6a711d6940",
    "Name": "sample string 2",
    "Description": "sample string 3",
    "ProficiencyLevel": 1.0,
    "Id": "dc986575-76af-411d-9e12-3c66ed1cd10a",
    "CreatedDate": "2025-12-05T20:26:14.2082584-08:00",
    "ModifiedDate": "2025-12-05T20:26:14.2082584-08:00",
    "DeletedDate": "2025-12-05T20:26:14.2082584-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSkills xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <Skills>
    <CreatedDate>2025-12-05T20:26:14.2082584-08:00</CreatedDate>
    <DeletedDate>2025-12-05T20:26:14.2082584-08:00</DeletedDate>
    <Id>dc986575-76af-411d-9e12-3c66ed1cd10a</Id>
    <ModifiedDate>2025-12-05T20:26:14.2082584-08:00</ModifiedDate>
    <Description>sample string 3</Description>
    <Name>sample string 2</Name>
    <ProficiencyLevel>1</ProficiencyLevel>
    <ProfileId>f4876c76-3af9-45d3-8ffa-9a6a711d6940</ProfileId>
  </Skills>
  <Skills>
    <CreatedDate>2025-12-05T20:26:14.2082584-08:00</CreatedDate>
    <DeletedDate>2025-12-05T20:26:14.2082584-08:00</DeletedDate>
    <Id>dc986575-76af-411d-9e12-3c66ed1cd10a</Id>
    <ModifiedDate>2025-12-05T20:26:14.2082584-08:00</ModifiedDate>
    <Description>sample string 3</Description>
    <Name>sample string 2</Name>
    <ProficiencyLevel>1</ProficiencyLevel>
    <ProfileId>f4876c76-3af9-45d3-8ffa-9a6a711d6940</ProfileId>
  </Skills>
</ArrayOfSkills>