GET api/advices/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Advices| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| ImageUrl | string |
None. |
|
| VideoUrl | string |
None. |
|
| Subject | string |
None. |
|
| Title | string |
None. |
|
| Subtitle | string |
None. |
|
| ContentDescription | string |
None. |
|
| ContentText | string |
None. |
|
| IsView | boolean |
None. |
|
| ViewNumber | integer |
None. |
|
| Likes | integer |
None. |
|
| Shared | integer |
None. |
|
| PublishedDate | date |
None. |
|
| AuthorName | string |
None. |
|
| AuthorPictureUrl | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "a81238dd-3d67-4911-8035-13af187b962f",
"ImageUrl": "sample string 2",
"VideoUrl": "sample string 3",
"Subject": "sample string 4",
"Title": "sample string 5",
"Subtitle": "sample string 6",
"ContentDescription": "sample string 7",
"ContentText": "sample string 8",
"IsView": true,
"ViewNumber": 10,
"Likes": 11,
"Shared": 12,
"PublishedDate": "2025-12-05T20:24:13.5816253-08:00",
"AuthorName": "sample string 14",
"AuthorPictureUrl": "sample string 15",
"Id": "7c2f91d9-0b35-4c52-8949-5c88ee8a804d",
"CreatedDate": "2025-12-05T20:24:13.5816253-08:00",
"ModifiedDate": "2025-12-05T20:24:13.5816253-08:00",
"DeletedDate": "2025-12-05T20:24:13.5816253-08:00"
}
application/xml, text/xml
Sample:
<Advices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:24:13.5816253-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:13.5816253-08:00</DeletedDate> <Id>7c2f91d9-0b35-4c52-8949-5c88ee8a804d</Id> <ModifiedDate>2025-12-05T20:24:13.5816253-08:00</ModifiedDate> <AuthorName>sample string 14</AuthorName> <AuthorPictureUrl>sample string 15</AuthorPictureUrl> <ContentDescription>sample string 7</ContentDescription> <ContentText>sample string 8</ContentText> <ImageUrl>sample string 2</ImageUrl> <IsView>true</IsView> <Likes>11</Likes> <ProfileId>a81238dd-3d67-4911-8035-13af187b962f</ProfileId> <PublishedDate>2025-12-05T20:24:13.5816253-08:00</PublishedDate> <Shared>12</Shared> <Subject>sample string 4</Subject> <Subtitle>sample string 6</Subtitle> <Title>sample string 5</Title> <VideoUrl>sample string 3</VideoUrl> <ViewNumber>10</ViewNumber> </Advices>