POST Data/InsertDataLog

Request Information

URI Parameters

None.

Body Parameters

InsertDataLogParams
NameDescriptionTypeAdditional information
opUserID

integer

None.

rowID

integer

None.

dataType

integer

None.

opType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "opUserID": 1,
  "rowID": 2,
  "dataType": 3,
  "opType": 4
}

application/xml, text/xml

Sample:
<InsertDataLogParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.ERP.RG.WebApis.Models">
  <dataType>3</dataType>
  <opType>4</opType>
  <opUserID>1</opUserID>
  <rowID>2</rowID>
</InsertDataLogParams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
resultCode

string

None.

resultMsg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "resultCode": "sample string 1",
  "resultMsg": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.ERP.RG.WebApis.Models">
  <resultCode>sample string 1</resultCode>
  <resultMsg>sample string 2</resultMsg>
</BaseResponse>