GET api/v2/AccessLevelGroups?AccessLevelGroupId={AccessLevelGroupId}

Returns a single AccessLevelGroupViewModel that the API token has rights to view based on a parameterized PK.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AccessLevelGroupId

integer

Required

Body Parameters

None.

Response Information

Resource Description

AccessLevelGroupViewModelV2
NameDescriptionTypeAdditional information
AccessLevelGroupId

Represents the PK of the AccessLevelGroup

integer

None.

Name

Represents the name of the AccessLevelGroup

string

None.

FacilityId

Represents the Id of the Facility this AccessLevelGroup is associated with

globally unique identifier

None.

FacilityName

Represents the Name of the Facility this AccessLevelGroup is associated with

string

None.

OccupantId

Represents the Id of the Occupancy this AccessLevelGroup is associated with

globally unique identifier

None.

OccupantName

Represents the Name of the Occupant this AccessLevelGroup is associated with

string

None.

Response Formats

application/json, text/json

Sample:
{
  "AccessLevelGroupId": 1,
  "Name": "sample string 2",
  "FacilityId": "6cff245e-03a2-4a87-84e9-338a4d4dd039",
  "FacilityName": "sample string 3",
  "OccupantId": "94619f6f-aefd-431d-b0b2-3b613aa98568",
  "OccupantName": "sample string 4"
}

application/xml, text/xml

Sample:
<AccessLevelGroupViewModelV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <AccessLevelGroupId>1</AccessLevelGroupId>
  <FacilityId>6cff245e-03a2-4a87-84e9-338a4d4dd039</FacilityId>
  <FacilityName>sample string 3</FacilityName>
  <Name>sample string 2</Name>
  <OccupantId>94619f6f-aefd-431d-b0b2-3b613aa98568</OccupantId>
  <OccupantName>sample string 4</OccupantName>
</AccessLevelGroupViewModelV2>