GET api/v2/AccessLevels/Types

Returns a list of defined Access Level Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AccessTypeViewModelV2
NameDescriptionTypeAdditional information
AccessLevelTypeId

Represents the PK of the Access Level Type

globally unique identifier

None.

Description

Represents the description of the Access Level Type

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccessLevelTypeId": "97cce71a-f6d4-4b67-9b43-4dc35a0b94f1",
    "Description": "sample string 2"
  },
  {
    "AccessLevelTypeId": "97cce71a-f6d4-4b67-9b43-4dc35a0b94f1",
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccessTypeViewModelV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <AccessTypeViewModelV2>
    <AccessLevelTypeId>97cce71a-f6d4-4b67-9b43-4dc35a0b94f1</AccessLevelTypeId>
    <Description>sample string 2</Description>
  </AccessTypeViewModelV2>
  <AccessTypeViewModelV2>
    <AccessLevelTypeId>97cce71a-f6d4-4b67-9b43-4dc35a0b94f1</AccessLevelTypeId>
    <Description>sample string 2</Description>
  </AccessTypeViewModelV2>
</ArrayOfAccessTypeViewModelV2>