POST api/InwardEntry/StatusMark

Request Information

URI Parameters

None.

Body Parameters

InwardEntryStatusMarkVM
NameDescriptionTypeAdditional information
InwardId

integer

Required

InwardStatus

InwardStatusLookup

None.

ClosedRemarks

string

String length: inclusive between 0 and 200

InwFileno

string

String length: inclusive between 0 and 100

User

integer

Required

Ip

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "InwardId": 1,
  "InwardStatus": {
    "InwardStatusId": 1,
    "InwardStatusName": "sample string 2"
  },
  "ClosedRemarks": "sample string 2",
  "InwFileno": "sample string 3",
  "User": 4,
  "Ip": "sample string 5"
}

application/xml, text/xml

Sample:
<InwardEntryStatusMarkVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <ClosedRemarks>sample string 2</ClosedRemarks>
  <InwFileno>sample string 3</InwFileno>
  <InwardId>1</InwardId>
  <InwardStatus>
    <InwardStatusId>1</InwardStatusId>
    <InwardStatusName>sample string 2</InwardStatusName>
  </InwardStatus>
  <Ip>sample string 5</Ip>
  <User>4</User>
</InwardEntryStatusMarkVM>

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.