GET api/clients/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Clients| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Logo | string |
None. |
|
| Description | string |
None. |
|
| Since | date |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "9dfcae72-e558-493d-87bf-af1b5366ae22",
"Name": "sample string 2",
"Logo": "sample string 3",
"Description": "sample string 4",
"Since": "2025-12-05T20:26:15.1171438-08:00",
"Id": "2ed04b26-a4a0-4e61-b4d1-ef5315e9609b",
"CreatedDate": "2025-12-05T20:26:15.1171438-08:00",
"ModifiedDate": "2025-12-05T20:26:15.1171438-08:00",
"DeletedDate": "2025-12-05T20:26:15.1171438-08:00"
}
application/xml, text/xml
Sample:
<Clients xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:26:15.1171438-08:00</CreatedDate> <DeletedDate>2025-12-05T20:26:15.1171438-08:00</DeletedDate> <Id>2ed04b26-a4a0-4e61-b4d1-ef5315e9609b</Id> <ModifiedDate>2025-12-05T20:26:15.1171438-08:00</ModifiedDate> <Description>sample string 4</Description> <Logo>sample string 3</Logo> <Name>sample string 2</Name> <ProfileId>9dfcae72-e558-493d-87bf-af1b5366ae22</ProfileId> <Since>2025-12-05T20:26:15.1171438-08:00</Since> </Clients>