GET v1/Clients/{clientId}/References/{id}
Gets the specified reference.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
| id |
Reference identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A .
ReferenceV1| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId |
The client id. |
globally unique identifier |
None. |
| Id |
The reference id. |
integer |
None. |
| Type |
The reference type. |
string |
None. |
| Description |
The reference description. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ClientId": "4906baec-6181-46de-b197-37ae6ac76c0e",
"Id": 1112972820,
"Type": "FacilityStatus",
"Description": "Software Only"
}
application/xml, text/xml
Sample:
<Reference xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models"> <ClientId>4906baec-6181-46de-b197-37ae6ac76c0e</ClientId> <Description>Software Only</Description> <Id>1112972820</Id> <Type>FacilityStatus</Type> </Reference>