GET api/Clients
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Client| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Uri | string |
None. |
|
| Guid | globally unique identifier |
None. |
|
| HasLogo | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Uri": "sample string 3",
"Guid": "9cd2d07d-7f4d-4065-98ef-194d280ae03f",
"HasLogo": true
},
{
"Id": 1,
"Name": "sample string 2",
"Uri": "sample string 3",
"Guid": "9cd2d07d-7f4d-4065-98ef-194d280ae03f",
"HasLogo": true
}
]
text/html
Sample:
[{"Id":1,"Name":"sample string 2","Uri":"sample string 3","Guid":"9cd2d07d-7f4d-4065-98ef-194d280ae03f","HasLogo":true},{"Id":1,"Name":"sample string 2","Uri":"sample string 3","Guid":"9cd2d07d-7f4d-4065-98ef-194d280ae03f","HasLogo":true}]
application/xml, text/xml
Sample:
<ArrayOfClient xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sancsoft.Core.Models">
<Client>
<Guid>9cd2d07d-7f4d-4065-98ef-194d280ae03f</Guid>
<HasLogo>true</HasLogo>
<Id>1</Id>
<Name>sample string 2</Name>
<Uri>sample string 3</Uri>
</Client>
<Client>
<Guid>9cd2d07d-7f4d-4065-98ef-194d280ae03f</Guid>
<HasLogo>true</HasLogo>
<Id>1</Id>
<Name>sample string 2</Name>
<Uri>sample string 3</Uri>
</Client>
</ArrayOfClient>