PUT api/production/cutting/layer_thickness

Request Information

URI Parameters

None.

Body Parameters

md_cutting_layer
NameDescriptionTypeAdditional information
model

string

None.

part

string

None.

material

string

None.

cutter

string

None.

layer

string

Required

layer_amount

integer

Required

Range: inclusive between 1 and 2147483647

bundle_amount

integer

Required

Range: inclusive between 1 and 2147483647

Request Formats

application/json, text/json

Sample:
{
  "model": "sample string 1",
  "part": "sample string 2",
  "material": "sample string 3",
  "cutter": "sample string 4",
  "layer": "sample string 5",
  "layer_amount": 1,
  "bundle_amount": 1
}

application/xml, text/xml

Sample:
<md_cutting_layer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models">
  <bundle_amount>1</bundle_amount>
  <cutter>sample string 4</cutter>
  <layer>sample string 5</layer>
  <layer_amount>1</layer_amount>
  <material>sample string 3</material>
  <model>sample string 1</model>
  <part>sample string 2</part>
</md_cutting_layer>

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 'md_cutting_layer'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.