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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Servicess
NameDescriptionTypeAdditional information
ProfileId

globally unique identifier

None.

ImageUrl

string

None.

VideoUrl

string

None.

Name

string

None.

Title

string

None.

Subtitle

string

None.

Description

string

None.

ContentText

string

None.

Price

integer

None.

Id

globally unique identifier

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ProfileId": "f305054d-3941-4da0-a784-1bfcecf6f589",
  "ImageUrl": "sample string 2",
  "VideoUrl": "sample string 3",
  "Name": "sample string 4",
  "Title": "sample string 5",
  "Subtitle": "sample string 6",
  "Description": "sample string 7",
  "ContentText": "sample string 8",
  "Price": 9,
  "Id": "dcba3bd1-dada-4b05-8057-363251c1c9d8",
  "CreatedDate": "2025-12-05T20:24:17.3900131-08:00",
  "ModifiedDate": "2025-12-05T20:24:17.3900131-08:00",
  "DeletedDate": "2025-12-05T20:24:17.3900131-08:00"
}

application/xml, text/xml

Sample:
<Servicess 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.3900131-08:00</CreatedDate>
  <DeletedDate>2025-12-05T20:24:17.3900131-08:00</DeletedDate>
  <Id>dcba3bd1-dada-4b05-8057-363251c1c9d8</Id>
  <ModifiedDate>2025-12-05T20:24:17.3900131-08:00</ModifiedDate>
  <ContentText>sample string 8</ContentText>
  <Description>sample string 7</Description>
  <ImageUrl>sample string 2</ImageUrl>
  <Name>sample string 4</Name>
  <Price>9</Price>
  <ProfileId>f305054d-3941-4da0-a784-1bfcecf6f589</ProfileId>
  <Subtitle>sample string 6</Subtitle>
  <Title>sample string 5</Title>
  <VideoUrl>sample string 3</VideoUrl>
</Servicess>