POST api/Images/PostInvoiceTakingImage
Request Information
URI Parameters
None.
Body Parameters
InvoiceTakingImageDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| HeaderId | string |
None. |
|
| DocumentNumber | string |
None. |
|
| Description | string |
None. |
|
| VehiclePlate | string |
None. |
|
| ShipPalletCount | decimal number |
None. |
|
| ManualProcessingCount | decimal number |
None. |
|
| IsConfirmed | boolean |
None. |
|
| HasProblem | boolean |
None. |
|
| ProblemDescription | string |
None. |
|
| Images | Collection of InvoiceTakingImageItemDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"headerId": "sample string 1",
"documentNumber": "sample string 2",
"description": "sample string 3",
"vehiclePlate": "sample string 4",
"shipPalletCount": 1.0,
"manualProcessingCount": 1.0,
"isConfirmed": true,
"hasProblem": true,
"problemDescription": "sample string 7",
"images": [
{
"extension": "sample string 1",
"base64": "sample string 2"
},
{
"extension": "sample string 1",
"base64": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<InvoiceTakingImageDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VolisServer.DTOs.Image">
<Description>sample string 3</Description>
<DocumentNumber>sample string 2</DocumentNumber>
<HasProblem>true</HasProblem>
<HeaderId>sample string 1</HeaderId>
<Images>
<InvoiceTakingImageItemDTO>
<Base64>sample string 2</Base64>
<Extension>sample string 1</Extension>
</InvoiceTakingImageItemDTO>
<InvoiceTakingImageItemDTO>
<Base64>sample string 2</Base64>
<Extension>sample string 1</Extension>
</InvoiceTakingImageItemDTO>
</Images>
<IsConfirmed>true</IsConfirmed>
<ManualProcessingCount>1</ManualProcessingCount>
<ProblemDescription>sample string 7</ProblemDescription>
<ShipPalletCount>1</ShipPalletCount>
<VehiclePlate>sample string 4</VehiclePlate>
</InvoiceTakingImageDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.