POST api/appentity/delete
Request Information
URI Parameters
None.
Body Parameters
AppEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Tablename | string |
None. |
|
| Displayname | string |
None. |
|
| ActionNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "0a364d50-40c3-4c4b-abc9-4b953f972b8f",
"Tablename": "sample string 3",
"Displayname": "sample string 4",
"ActionNumber": 1
}
application/xml, text/xml
Sample:
<AppEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <ActionNumber>1</ActionNumber> <Displayname>sample string 4</Displayname> <Id>1</Id> <RowGuid>0a364d50-40c3-4c4b-abc9-4b953f972b8f</RowGuid> <Tablename>sample string 3</Tablename> </AppEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>