POST api/RestApp/SaveData

Request Information

URI Parameters

None.

Body Parameters

RestAppModel
NameDescriptionTypeAdditional information
SecretKey

string

None.

ObjectCode

integer

None.

TableGuid

globally unique identifier

None.

Data

Object

None.

Error

boolean

None.

Message

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SecretKey": "sample string 1",
  "ObjectCode": 1,
  "TableGuid": "4667733a-dbf1-41d5-9b82-16e62c7f1ec5",
  "Data": {},
  "Error": true,
  "Message": "sample string 3"
}

application/xml, text/xml

Sample:
<RestAppModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IqqmwModel.IqApiModels">
  <Data />
  <Error>true</Error>
  <Message>sample string 3</Message>
  <ObjectCode>1</ObjectCode>
  <SecretKey>sample string 1</SecretKey>
  <TableGuid>4667733a-dbf1-41d5-9b82-16e62c7f1ec5</TableGuid>
</RestAppModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.