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": "67c4cbbb-e48e-4cd2-8a33-bc62339586bc",
"Name": "DEMO C STORE"
},
{
"Id": "9db1313e-44a4-4f7f-85c0-f8589421006a",
"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>67c4cbbb-e48e-4cd2-8a33-bc62339586bc</Id>
<Name>DEMO C STORE</Name>
</Client>
<Client>
<Id>9db1313e-44a4-4f7f-85c0-f8589421006a</Id>
<Name>TITAN CLOUD SOFTWARE DEMO SUITE</Name>
</Client>
</ArrayOfClient>