GET v1/Clients/{clientId}/Contacts/{contactId}/FacilityAssociations
Gets a list of Facility Associations for a specific contact.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
The client identifier. |
globally unique identifier |
Required |
| contactId |
The contact identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of .
Collection of FacilityAssociationV1| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityId |
The facility identifier. |
integer |
None. |
| IsDynamicAssociation |
The boolean value is false if the contact was manually added to the facility. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FacilityId": 1,
"IsDynamicAssociation": true
},
{
"FacilityId": 1,
"IsDynamicAssociation": true
}
]
application/xml, text/xml
Sample:
<ArrayOfFacilityAssociation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Contacts">
<FacilityAssociation>
<FacilityId>1</FacilityId>
<IsDynamicAssociation>true</IsDynamicAssociation>
</FacilityAssociation>
<FacilityAssociation>
<FacilityId>1</FacilityId>
<IsDynamicAssociation>true</IsDynamicAssociation>
</FacilityAssociation>
</ArrayOfFacilityAssociation>