PUT api/OuterGateClientOrder/AddFilmToClientOrder?orderId={orderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | integer |
Required |
Body Parameters
OuterFilmModelIn| Name | Description | Type | Additional information |
|---|---|---|---|
| TypeOfMaterialId | integer |
Range: inclusive between 1 and 2147483647 |
|
| TypeOfProcessingId | integer |
Range: inclusive between 1 and 2147483647 |
|
| TypeOfEyeletsId | integer |
Range: inclusive between 1 and 2147483647 |
|
| TypeOfHolesId | integer |
Range: inclusive between 1 and 2147483647 |
|
| FilmWidthId | integer |
Range: inclusive between 1 and 2147483647 |
|
| FilmLength | decimal number |
Range: inclusive between 0,01 and 3,40282346638529E+38 |
|
| NumberFilms | integer |
Range: inclusive between 1 and 2147483647 |
|
| Parcel | string |
Max length: 255 |
|
| ParcelNote | string |
None. |
|
| Decentration | decimal number |
None. |
|
| DeliveryDate | date |
None. |
|
| Note | string |
Max length: 4000 |
Request Formats
application/json, text/json
Sample:
{
"TypeOfMaterialId": 1,
"TypeOfProcessingId": 2,
"TypeOfEyeletsId": 3,
"TypeOfHolesId": 4,
"FilmWidthId": 5,
"FilmLength": 6.1,
"NumberFilms": 7,
"Parcel": "sample string 8",
"ParcelNote": "sample string 9",
"Decentration": 1.1,
"DeliveryDate": "2026-04-17T15:31:20.1736844+02:00",
"Note": "sample string 10"
}
application/xml, text/xml
Sample:
<OuterFilmModelIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models.Film"> <Decentration>1.1</Decentration> <DeliveryDate>2026-04-17T15:31:20.1736844+02:00</DeliveryDate> <FilmLength>6.1</FilmLength> <FilmWidthId>5</FilmWidthId> <Note>sample string 10</Note> <NumberFilms>7</NumberFilms> <Parcel>sample string 8</Parcel> <ParcelNote>sample string 9</ParcelNote> <TypeOfEyeletsId>3</TypeOfEyeletsId> <TypeOfHolesId>4</TypeOfHolesId> <TypeOfMaterialId>1</TypeOfMaterialId> <TypeOfProcessingId>2</TypeOfProcessingId> </OuterFilmModelIn>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutComeBaseModelOut| Name | Description | Type | Additional information |
|---|---|---|---|
| NewIdentifier | integer |
None. |
|
| Warning | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"NewIdentifier": 1,
"Warning": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<OutComeBaseModelOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models"> <Message>sample string 2</Message> <NewIdentifier>1</NewIdentifier> <Warning>true</Warning> </OutComeBaseModelOut>