GET api/v{version}/delegategroups/{delegateGroupId}/clients/{clientId}
Gets information about a client and the dates during which the client is valid within the delegate group.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| delegateGroupId |
The ID of the delegate group the the client should be part of. |
integer |
Required |
| clientId |
The ID fo the client. |
integer |
Required |
| version |
The requested API version |
string |
Required Default value is 2.0 |
Body Parameters
None.
Response Information
Resource Description
Returns the status information for the client.
DelegateClientStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId |
Gets or sets the ID of the client that this status is for |
integer |
None. |
| DelegateGroupId |
Gets or sets the delegate group that this status is for |
integer |
None. |
| ValidDates |
Gets or sets the dates that the client is valid in it's group |
Collection of DateRange |
None. |
Response Formats
application/json, text/json, application/problem+json
Sample:
{
"clientId": 1,
"delegateGroupId": 2,
"validDates": null
}
application/xml, text/xml
Sample:
<DelegateClientStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TS.DR.Resources.Delegates"> <ClientId>1</ClientId> <DelegateGroupId>2</DelegateGroupId> <ValidDates xmlns:d2p1="http://schemas.datacontract.org/2004/07/TS.DR.Resources" i:nil="true" /> </DelegateClientStatus>