POST api/appentity/preparenew
Request Information
URI Parameters
None.
Body Parameters
Collection of KeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Value | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": "sample string 2"
},
{
"Id": 1,
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
</ArrayOfKeyValue>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AppEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Tablename | string |
None. |
|
| Displayname | string |
None. |
|
| ActionNumber | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "666d4b68-c6fa-4e4a-b4bf-91755b9371ff",
"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>666d4b68-c6fa-4e4a-b4bf-91755b9371ff</RowGuid> <Tablename>sample string 3</Tablename> </AppEntity>