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": "959c2f2c-dd9b-47ba-bc61-76a53051170f",
"Id": 721932376,
"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>959c2f2c-dd9b-47ba-bc61-76a53051170f</ClientId> <Description>Software Only</Description> <Id>721932376</Id> <Type>FacilityStatus</Type> </Reference>