POST api/usrrole2action/delete

Request Information

URI Parameters

None.

Body Parameters

UsrRole2Action
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

RoleId

integer

Required

ActionId

integer

Required

GrantAccess

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "f98d1166-7753-451a-9230-ab082c201ec8",
  "RoleId": 3,
  "ActionId": 4,
  "GrantAccess": true
}

application/xml, text/xml

Sample:
<UsrRole2Action xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Usr.Models">
  <ActionId>4</ActionId>
  <GrantAccess>true</GrantAccess>
  <Id>1</Id>
  <RoleId>3</RoleId>
  <RowGuid>f98d1166-7753-451a-9230-ab082c201ec8</RowGuid>
</UsrRole2Action>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UsrRole2Action'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>