GET v1/Clients/{clientId}
Gets the specified client.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A .
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": "fa92036a-4ab3-4fcb-9a6c-c5b1dfd6a18f",
"Name": "Demo C Store"
}
application/xml, text/xml
Sample:
<Client xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models"> <Id>fa92036a-4ab3-4fcb-9a6c-c5b1dfd6a18f</Id> <Name>Demo C Store</Name> </Client>