GET v1/Clients
Gets all active clients.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of ClientV1| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The client id. |
globally unique identifier |
None. |
| Name |
The client name. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "c7aaede8-6beb-475e-8036-cc8e24d0edab",
"Name": "DEMO C STORE"
},
{
"Id": "bf3ef0d6-1119-4401-a8b6-6065d586455e",
"Name": "TITAN CLOUD SOFTWARE DEMO SUITE"
}
]
application/xml, text/xml
Sample:
<ArrayOfClient xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models">
<Client>
<Id>c7aaede8-6beb-475e-8036-cc8e24d0edab</Id>
<Name>DEMO C STORE</Name>
</Client>
<Client>
<Id>bf3ef0d6-1119-4401-a8b6-6065d586455e</Id>
<Name>TITAN CLOUD SOFTWARE DEMO SUITE</Name>
</Client>
</ArrayOfClient>