POST api/StoreLC/PostRemarkLC

Request Information

URI Parameters

None.

Body Parameters

RemarkLC
NameDescriptionTypeAdditional information
remarks

Collection of m_PostRemark

None.

Request Formats

application/json, text/json

Sample:
{
  "remarks": [
    {
      "receiveTransferModelId": 1,
      "remark": "sample string 2",
      "amount": 3,
      "type": "sample string 4"
    },
    {
      "receiveTransferModelId": 1,
      "remark": "sample string 2",
      "amount": 3,
      "type": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<RemarkLC xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models.ProductionLine.StoreLC">
  <remarks>
    <m_PostRemark>
      <amount>3</amount>
      <receiveTransferModelId>1</receiveTransferModelId>
      <remark>sample string 2</remark>
      <type>sample string 4</type>
    </m_PostRemark>
    <m_PostRemark>
      <amount>3</amount>
      <receiveTransferModelId>1</receiveTransferModelId>
      <remark>sample string 2</remark>
      <type>sample string 4</type>
    </m_PostRemark>
  </remarks>
</RemarkLC>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RemarkLC'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.