GET api/v1/AccessLevels?AccessLevelId={AccessLevelId}

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AccessLevelId

integer

Required

Body Parameters

None.

Response Information

Resource Description

AccessLevelViewModel
NameDescriptionTypeAdditional information
AccessLevelId

Represents the PK of the AccessLevel

integer

None.

Name

Represents the name of the AccessLevel

string

None.

AccessLevelStartDate

Represents AccessLvel starting date

date

None.

AccessLevelEndDate

Represents AccessLvel ending date

date

None.

Deleted

Represents whether or not AccessLevel is deleted

boolean

None.

ACSystemId

Represents PK for an ACSystem this AccessLevel belongs to

globally unique identifier

None.

CompanyId

Represents PK for Company this AccessLevel belongs to

globally unique identifier

None.

ApplyByDefault

Indicates whether or not to apply this AccessLevel by default when creating a User

boolean

None.

AccessLevelTypeId

Represents the type of a given AccessLevel

globally unique identifier

None.

FacilityId

Represents the ID of the Facility a given Access Level is associated with

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "AccessLevelId": 1,
  "Name": "sample string 2",
  "AccessLevelStartDate": "2024-04-26T01:21:20.4571884+00:00",
  "AccessLevelEndDate": "2024-04-26T01:21:20.4571884+00:00",
  "Deleted": true,
  "ACSystemId": "a8ef92e7-04b3-4f7e-b57d-4f5dfdaa3c19",
  "CompanyId": "d90df3a2-bf00-4f20-adb2-4ab6e0b33759",
  "ApplyByDefault": true,
  "AccessLevelTypeId": "5b5639aa-2e65-459d-b60b-1a94b8d84a88",
  "FacilityId": "008ee09f-e020-4bb1-bfb1-aadd4ed95438"
}

application/xml, text/xml

Sample:
<AccessLevelViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <ACSystemId>a8ef92e7-04b3-4f7e-b57d-4f5dfdaa3c19</ACSystemId>
  <AccessLevelEndDate>2024-04-26T01:21:20.4571884+00:00</AccessLevelEndDate>
  <AccessLevelId>1</AccessLevelId>
  <AccessLevelStartDate>2024-04-26T01:21:20.4571884+00:00</AccessLevelStartDate>
  <ApplyByDefault>true</ApplyByDefault>
  <CompanyId>d90df3a2-bf00-4f20-adb2-4ab6e0b33759</CompanyId>
  <Deleted>true</Deleted>
  <Name>sample string 2</Name>
</AccessLevelViewModel>