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": "ec8c53ac-460a-4227-80e2-d65de6d55265",
"HasLogo": true
},
{
"Id": 1,
"Name": "sample string 2",
"Uri": "sample string 3",
"Guid": "ec8c53ac-460a-4227-80e2-d65de6d55265",
"HasLogo": true
}
]
text/html
Sample:
[{"Id":1,"Name":"sample string 2","Uri":"sample string 3","Guid":"ec8c53ac-460a-4227-80e2-d65de6d55265","HasLogo":true},{"Id":1,"Name":"sample string 2","Uri":"sample string 3","Guid":"ec8c53ac-460a-4227-80e2-d65de6d55265","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>ec8c53ac-460a-4227-80e2-d65de6d55265</Guid>
<HasLogo>true</HasLogo>
<Id>1</Id>
<Name>sample string 2</Name>
<Uri>sample string 3</Uri>
</Client>
<Client>
<Guid>ec8c53ac-460a-4227-80e2-d65de6d55265</Guid>
<HasLogo>true</HasLogo>
<Id>1</Id>
<Name>sample string 2</Name>
<Uri>sample string 3</Uri>
</Client>
</ArrayOfClient>