POST api/UserRole/GetUserRolesDetails

Request Information

URI Parameters

None.

Body Parameters

jQueryDataTableParamModel
NameDescriptionTypeAdditional information
length

integer

None.

start

integer

None.

iSortCol_0

integer

None.

sSortDir_0

string

None.

sSearch

string

None.

resultType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "length": 1,
  "start": 2,
  "iSortCol_0": 3,
  "sSortDir_0": "sample string 4",
  "sSearch": "sample string 5",
  "resultType": "sample string 6"
}

application/xml, text/xml

Sample:
<UserRoleModel.jQueryDataTableParamModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Models">
  <iSortCol_0>3</iSortCol_0>
  <length>1</length>
  <resultType>sample string 6</resultType>
  <sSearch>sample string 5</sSearch>
  <sSortDir_0>sample string 4</sSortDir_0>
  <start>2</start>
</UserRoleModel.jQueryDataTableParamModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

dtResponse
NameDescriptionTypeAdditional information
draw

integer

None.

recordsTotal

integer

None.

recordsFiltered

integer

None.

data

DataTable

None.

error

string

None.

Response Formats

application/json, text/json

Sample:
{
  "draw": 1,
  "recordsTotal": 2,
  "recordsFiltered": 3,
  "data": null,
  "error": "sample string 4"
}

application/xml, text/xml

Sample:
<dtResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Controllers">
  <data i:nil="true" />
  <draw>1</draw>
  <error>sample string 4</error>
  <recordsFiltered>3</recordsFiltered>
  <recordsTotal>2</recordsTotal>
</dtResponse>