GET api/roles

This method will retrieve all user roles supported by the platform

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RoleModel objects

RoleModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2"
}

text/html

Sample:
{"id":1,"name":"sample string 2"}

application/xml, text/xml

Sample:
<RoleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels">
  <Id>1</Id>
  <Name>sample string 2</Name>
</RoleModel>