GET v1/Clients/{clientId}/References?type={type}
Gets all active references that match the query, if provided.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
| type | string |
None. |
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of 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": "892b6750-cb50-4048-a0e7-1e774e42d2e5",
"Id": 1235705836,
"Type": "FacilityStatus",
"Description": "Software Only"
},
{
"ClientId": "b91aa17f-8c50-4084-9ed9-1d6eb6aa6872",
"Id": 1235705836,
"Type": "FacilityStatus",
"Description": "Managed (by Company)"
}
]
application/xml, text/xml
Sample:
<ArrayOfReference xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models">
<Reference>
<ClientId>892b6750-cb50-4048-a0e7-1e774e42d2e5</ClientId>
<Description>Software Only</Description>
<Id>1235705836</Id>
<Type>FacilityStatus</Type>
</Reference>
<Reference>
<ClientId>b91aa17f-8c50-4084-9ed9-1d6eb6aa6872</ClientId>
<Description>Managed (by Company)</Description>
<Id>1235705836</Id>
<Type>FacilityStatus</Type>
</Reference>
</ArrayOfReference>