GET v1/Clients/{clientId}

Gets the specified client.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Client identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

A .

ClientV1
NameDescriptionTypeAdditional information
Id

The client id.

globally unique identifier

None.

Name

The client name.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "98bae4ab-4b36-4ade-947b-4c4e09a4bad4",
  "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>98bae4ab-4b36-4ade-947b-4c4e09a4bad4</Id>
  <Name>Demo C Store</Name>
</Client>