PUT api/production/cutting/layer_thickness
Request Information
URI Parameters
None.
Body Parameters
md_cutting_layer| Name | Description | Type | Additional 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.