GET api/clinics/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Clinics| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Logo | string |
None. |
|
| OtherLogo | string |
None. |
|
| OpeningDay | string |
None. |
|
| OpeningHour | string |
None. |
|
| IsOpen | boolean |
None. |
|
| CreationDate | date |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Logo": "sample string 2",
"OtherLogo": "sample string 3",
"OpeningDay": "sample string 4",
"OpeningHour": "sample string 5",
"IsOpen": true,
"CreationDate": "2025-12-05T20:26:02.9724424-08:00",
"Id": "fa8e4f16-7b57-46c1-a287-b7ef742011e9",
"CreatedDate": "2025-12-05T20:26:02.9724424-08:00",
"ModifiedDate": "2025-12-05T20:26:02.9724424-08:00",
"DeletedDate": "2025-12-05T20:26:02.9724424-08:00"
}
application/xml, text/xml
Sample:
<Clinics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:26:02.9724424-08:00</CreatedDate> <DeletedDate>2025-12-05T20:26:02.9724424-08:00</DeletedDate> <Id>fa8e4f16-7b57-46c1-a287-b7ef742011e9</Id> <ModifiedDate>2025-12-05T20:26:02.9724424-08:00</ModifiedDate> <CreationDate>2025-12-05T20:26:02.9724424-08:00</CreationDate> <IsOpen>true</IsOpen> <Logo>sample string 2</Logo> <Name>sample string 1</Name> <OpeningDay>sample string 4</OpeningDay> <OpeningHour>sample string 5</OpeningHour> <OtherLogo>sample string 3</OtherLogo> </Clinics>