GET api/v1/Roles?RoleId={RoleId}
Returns a single RoleViewModel that the API token has rights to view based on a parameterized PK.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RoleId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RoleViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RoleId |
Represents the PK of the Role that is assigned to an existing User |
integer |
None. |
| Name |
Represents the name of the Role that is assigned to an existing User |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RoleId": 1,
"Name": "sample string 2"
}
application/xml, text/xml
Sample:
<RoleViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers"> <Name>sample string 2</Name> <RoleId>1</RoleId> </RoleViewModel>