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 AccessTypeViewModelV2Name | Description | Type | Additional 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": "c5bb13e1-188d-42f9-be0d-07ef9f32f332", "Description": "sample string 2" }, { "AccessLevelTypeId": "c5bb13e1-188d-42f9-be0d-07ef9f32f332", "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>c5bb13e1-188d-42f9-be0d-07ef9f32f332</AccessLevelTypeId> <Description>sample string 2</Description> </AccessTypeViewModelV2> <AccessTypeViewModelV2> <AccessLevelTypeId>c5bb13e1-188d-42f9-be0d-07ef9f32f332</AccessLevelTypeId> <Description>sample string 2</Description> </AccessTypeViewModelV2> </ArrayOfAccessTypeViewModelV2>