POST api/appentity/preparenew

Request Information

URI Parameters

None.

Body Parameters

Collection of KeyValue
NameDescriptionTypeAdditional 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:

Sample not available.

Response Information

Resource Description

AppEntity
NameDescriptionTypeAdditional 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": "f8928af8-4eb9-42bd-826a-07a894d3a748",
  "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>f8928af8-4eb9-42bd-826a-07a894d3a748</RowGuid>
  <Tablename>sample string 3</Tablename>
</AppEntity>