GET v1/Clients
Gets all active clients.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of ClientV1Name | 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": "bc9babf3-fc82-405f-994e-e9ade25eca94", "Name": "DEMO C STORE" }, { "Id": "6f4ee393-06e6-4e65-9fc8-8599257bb377", "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>bc9babf3-fc82-405f-994e-e9ade25eca94</Id> <Name>DEMO C STORE</Name> </Client> <Client> <Id>6f4ee393-06e6-4e65-9fc8-8599257bb377</Id> <Name>TITAN CLOUD SOFTWARE DEMO SUITE</Name> </Client> </ArrayOfClient>