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
OccupancyViewModelName | 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": "b986be05-b119-471f-88fa-3645707cef8a", "Name": "sample string 2", "ACSystemId": "c24b175d-749f-4693-a307-53dcecda159e", "ACSystemName": "sample string 4", "FacilityId": "7367d68b-c9f0-462e-ae94-0cce4c5e1119", "FacilityName": "sample string 6", "CompanyId": "dace1f94-a50e-47bd-b897-f62efabdc23b", "CompanyName": "sample string 7", "StreetAddress1": "sample string 8", "StreetAddress2": "sample string 9", "City": "sample string 10", "RegionId": "f2e26008-d4fe-4b38-bb01-4419396323cf", "RegionName": "sample string 12", "CountryId": "e3a7e1c3-5f28-4588-86df-a7de4af5b959", "CountryName": "sample string 14", "PostalCode": "sample string 15", "Website": "sample string 16", "Phone": "sample string 17", "DefaultBadgeTemplateId": "cf7d22d5-cd1b-457f-94bc-ad0c79047c9b", "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>c24b175d-749f-4693-a307-53dcecda159e</ACSystemId> <ACSystemName>sample string 4</ACSystemName> <City>sample string 10</City> <CompanyId>dace1f94-a50e-47bd-b897-f62efabdc23b</CompanyId> <CompanyName>sample string 7</CompanyName> <CountryId>e3a7e1c3-5f28-4588-86df-a7de4af5b959</CountryId> <CountryName>sample string 14</CountryName> <DefaultBadgeTemplateId>cf7d22d5-cd1b-457f-94bc-ad0c79047c9b</DefaultBadgeTemplateId> <DefaultBadgeTemplateName>sample string 18</DefaultBadgeTemplateName> <Deleted>true</Deleted> <EmailAddressDomainFormula>sample string 21</EmailAddressDomainFormula> <EmailAddressUsernameFormula>sample string 20</EmailAddressUsernameFormula> <FacilityId>7367d68b-c9f0-462e-ae94-0cce4c5e1119</FacilityId> <FacilityName>sample string 6</FacilityName> <Name>sample string 2</Name> <OccupantId>b986be05-b119-471f-88fa-3645707cef8a</OccupantId> <Phone>sample string 17</Phone> <PostalCode>sample string 15</PostalCode> <RegionId>f2e26008-d4fe-4b38-bb01-4419396323cf</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>