GET api/v1/Occupancies?OccupancyId={OccupancyId}
Returns a single OccupancyViewModel if the API token has rights to view it
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OccupancyId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
OccupancyViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OccupantId |
Represents the PK of the Occupancy |
globally unique identifier |
None. |
| Name |
Represents the name of the Occupancy |
string |
None. |
| ACSystemId |
Represents the PK of the Access Control System for the Occupancy |
globally unique identifier |
None. |
| ACSystemName |
Represents the name of the Access Control System for the Occupancy |
string |
None. |
| FacilityId |
Represents the PK of the Facility the Occupancy is in within BluSKY |
globally unique identifier |
None. |
| FacilityName |
Represents the name of the Facility the Occupancy is in within BluSKY |
string |
None. |
| CompanyId |
Optional: Represents the PK of the global company that the Occupancy is an instance of. |
globally unique identifier |
None. |
| CompanyName |
Represents the name of the global company that the Occupancy is an instance of. |
string |
None. |
| StreetAddress1 |
Represents the primary street address of the Occupancy |
string |
None. |
| StreetAddress2 |
Represents the secondary street address of the Occupancy |
string |
None. |
| City |
Represents the city of the Occupancy |
string |
None. |
| RegionId |
Represents the PK of the region (State, Province, County, etc) of the Occupancy |
globally unique identifier |
None. |
| RegionName |
Represents the name of the region (State, Province, County, etc) of the Occupancy |
string |
None. |
| CountryId |
Represents the PK of the country of the Occupancy |
globally unique identifier |
None. |
| CountryName |
Represents the name of the country of the Occupancy |
string |
None. |
| PostalCode |
Represents the Postal Code/Zip Code of the Occupancy |
string |
None. |
| Website |
Represents the URL of the website associated with the Occupancy |
string |
None. |
| Phone |
Represents the primary phone number of the Occupancy |
string |
None. |
| DefaultBadgeTemplateId |
Represents the PK of the default Badge Template for the Occupancy |
globally unique identifier |
None. |
| DefaultBadgeTemplateName |
Represents the name of the default Badge Template for the Occupancy |
string |
None. |
| Deleted |
Represents the deleted status of the Occupancy |
boolean |
None. |
| EmailAddressUsernameFormula |
Represents the email address format of the Occupancy. |
string |
None. |
| EmailAddressDomainFormula |
Represents the email address of the Occupancy. |
string |
None. |
| sAvailableEmailAddressFormulaTemplateId |
Represents the email address formula template id of the Occupancy. |
AvailableEmailAddressFormulaTemplateEnum |
None. |
Response Formats
application/json, text/json
{
"OccupantId": "d07100c7-0583-42cc-982c-e6786d0e6022",
"Name": "sample string 2",
"ACSystemId": "bd1054a5-8c58-4997-9559-e66cdcbf5382",
"ACSystemName": "sample string 4",
"FacilityId": "082bdf26-5b32-4fc5-a6f4-a523b44e78e8",
"FacilityName": "sample string 6",
"CompanyId": "a9282502-22af-4658-b7f2-0efe179fcaf9",
"CompanyName": "sample string 7",
"StreetAddress1": "sample string 8",
"StreetAddress2": "sample string 9",
"City": "sample string 10",
"RegionId": "65f81083-7aa3-4850-aa6f-87795fd22c41",
"RegionName": "sample string 12",
"CountryId": "6d804350-061d-4bf3-8386-60df0f9e69c0",
"CountryName": "sample string 14",
"PostalCode": "sample string 15",
"Website": "sample string 16",
"Phone": "sample string 17",
"DefaultBadgeTemplateId": "6a101cbc-425e-43a0-ad70-0aa6132391e9",
"DefaultBadgeTemplateName": "sample string 18",
"Deleted": true,
"EmailAddressUsernameFormula": "sample string 20",
"EmailAddressDomainFormula": "sample string 21",
"sAvailableEmailAddressFormulaTemplateId": 0
}
application/xml, text/xml
<OccupancyViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers"> <ACSystemId>bd1054a5-8c58-4997-9559-e66cdcbf5382</ACSystemId> <ACSystemName>sample string 4</ACSystemName> <City>sample string 10</City> <CompanyId>a9282502-22af-4658-b7f2-0efe179fcaf9</CompanyId> <CompanyName>sample string 7</CompanyName> <CountryId>6d804350-061d-4bf3-8386-60df0f9e69c0</CountryId> <CountryName>sample string 14</CountryName> <DefaultBadgeTemplateId>6a101cbc-425e-43a0-ad70-0aa6132391e9</DefaultBadgeTemplateId> <DefaultBadgeTemplateName>sample string 18</DefaultBadgeTemplateName> <Deleted>true</Deleted> <EmailAddressDomainFormula>sample string 21</EmailAddressDomainFormula> <EmailAddressUsernameFormula>sample string 20</EmailAddressUsernameFormula> <FacilityId>082bdf26-5b32-4fc5-a6f4-a523b44e78e8</FacilityId> <FacilityName>sample string 6</FacilityName> <Name>sample string 2</Name> <OccupantId>d07100c7-0583-42cc-982c-e6786d0e6022</OccupantId> <Phone>sample string 17</Phone> <PostalCode>sample string 15</PostalCode> <RegionId>65f81083-7aa3-4850-aa6f-87795fd22c41</RegionId> <RegionName>sample string 12</RegionName> <StreetAddress1>sample string 8</StreetAddress1> <StreetAddress2>sample string 9</StreetAddress2> <Website>sample string 16</Website> <sAvailableEmailAddressFormulaTemplateId>Custom</sAvailableEmailAddressFormulaTemplateId> </OccupancyViewModel>