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": "2c839e19-6a7f-49b2-ae1b-560c5a45570f", "Name": "DEMO C STORE" }, { "Id": "99cae7bd-a536-4299-9c80-c80384211567", "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>2c839e19-6a7f-49b2-ae1b-560c5a45570f</Id> <Name>DEMO C STORE</Name> </Client> <Client> <Id>99cae7bd-a536-4299-9c80-c80384211567</Id> <Name>TITAN CLOUD SOFTWARE DEMO SUITE</Name> </Client> </ArrayOfClient>