POST api/appapiaccountuser/delete

Request Information

URI Parameters

None.

Body Parameters

AppApiAccountUser
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

AppApiAccountId

integer

Required

UsrUserId

integer

Required

Enabled

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "d7d4b9ac-f74e-4785-9d12-61edc050cbb5",
  "AppApiAccountId": 3,
  "UsrUserId": 4,
  "Enabled": 5
}

application/xml, text/xml

Sample:
<AppApiAccountUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AppApiAccountId>3</AppApiAccountId>
  <Enabled>5</Enabled>
  <Id>1</Id>
  <RowGuid>d7d4b9ac-f74e-4785-9d12-61edc050cbb5</RowGuid>
  <UsrUserId>4</UsrUserId>
</AppApiAccountUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>