POST api/Assembly/CloseAssembly

Request Information

URI Parameters

None.

Body Parameters

AssemblyClosingVM
NameDescriptionTypeAdditional information
Assembly

AssemblyLookup

Required

Remarks

string

Required

String length: inclusive between 0 and 250

ClosingUser

integer

Required

ClosingIp

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "Assembly": {
    "AssemblyId": 1,
    "AssemblyDesc": "sample string 2"
  },
  "Remarks": "sample string 1",
  "ClosingUser": 2,
  "ClosingIp": "sample string 3"
}

application/xml, text/xml

Sample:
<AssemblyClosingVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <Assembly>
    <AssemblyDesc>sample string 2</AssemblyDesc>
    <AssemblyId>1</AssemblyId>
  </Assembly>
  <ClosingIp>sample string 3</ClosingIp>
  <ClosingUser>2</ClosingUser>
  <Remarks>sample string 1</Remarks>
</AssemblyClosingVM>

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.