GET api/profiles/byid?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Profiless
NameDescriptionTypeAdditional information
CredentialId

globally unique identifier

None.

DoctorId

globally unique identifier

None.

ClinicId

globally unique identifier

None.

Speciality

string

None.

Description

string

None.

IsMobile

boolean

None.

IsClinic

boolean

None.

IsDoctor

boolean

None.

IsAvailable

boolean

None.

Followers

integer

None.

Following

integer

None.

Likes

integer

None.

Clients

integer

None.

Shared

integer

None.

Views

integer

None.

Notes

integer

None.

IsActive

boolean

None.

Id

globally unique identifier

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "CredentialId": "93a64ea8-6631-49e6-8bef-86c0f3ae3ddf",
  "DoctorId": "d30bd90d-1467-4442-bfa5-01c7a2372b31",
  "ClinicId": "e6fc184f-35fc-4682-b11c-f7308622fc91",
  "Speciality": "sample string 2",
  "Description": "sample string 3",
  "IsMobile": true,
  "IsClinic": true,
  "IsDoctor": true,
  "IsAvailable": true,
  "Followers": 8,
  "Following": 9,
  "Likes": 10,
  "Clients": 11,
  "Shared": 12,
  "Views": 13,
  "Notes": 14,
  "IsActive": true,
  "Id": "f6956fd7-7213-40fa-9873-f820a40e2b15",
  "CreatedDate": "2025-12-05T20:24:17.0872632-08:00",
  "ModifiedDate": "2025-12-05T20:24:17.0872632-08:00",
  "DeletedDate": "2025-12-05T20:24:17.0872632-08:00"
}

application/xml, text/xml

Sample:
<Profiless xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <CreatedDate>2025-12-05T20:24:17.0872632-08:00</CreatedDate>
  <DeletedDate>2025-12-05T20:24:17.0872632-08:00</DeletedDate>
  <Id>f6956fd7-7213-40fa-9873-f820a40e2b15</Id>
  <ModifiedDate>2025-12-05T20:24:17.0872632-08:00</ModifiedDate>
  <Clients>11</Clients>
  <ClinicId>e6fc184f-35fc-4682-b11c-f7308622fc91</ClinicId>
  <CredentialId>93a64ea8-6631-49e6-8bef-86c0f3ae3ddf</CredentialId>
  <Description>sample string 3</Description>
  <DoctorId>d30bd90d-1467-4442-bfa5-01c7a2372b31</DoctorId>
  <Followers>8</Followers>
  <Following>9</Following>
  <IsActive>true</IsActive>
  <IsAvailable>true</IsAvailable>
  <IsClinic>true</IsClinic>
  <IsDoctor>true</IsDoctor>
  <IsMobile>true</IsMobile>
  <Likes>10</Likes>
  <Notes>14</Notes>
  <Shared>12</Shared>
  <Speciality>sample string 2</Speciality>
  <Views>13</Views>
</Profiless>