GET role/GetRightTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RightType
NameDescriptionTypeAdditional information
RightTypeID

integer

None.

RightTypeName

string

None.

RightTypeDescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RightTypeID": 1,
    "RightTypeName": "sample string 2",
    "RightTypeDescription": "sample string 3"
  },
  {
    "RightTypeID": 1,
    "RightTypeName": "sample string 2",
    "RightTypeDescription": "sample string 3"
  }
]

text/html

Sample:
[{"RightTypeID":1,"RightTypeName":"sample string 2","RightTypeDescription":"sample string 3"},{"RightTypeID":1,"RightTypeName":"sample string 2","RightTypeDescription":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfRightType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <RightType>
    <RightTypeDescription>sample string 3</RightTypeDescription>
    <RightTypeID>1</RightTypeID>
    <RightTypeName>sample string 2</RightTypeName>
  </RightType>
  <RightType>
    <RightTypeDescription>sample string 3</RightTypeDescription>
    <RightTypeID>1</RightTypeID>
    <RightTypeName>sample string 2</RightTypeName>
  </RightType>
</ArrayOfRightType>