POST api/Delivery/UpdateQuantity

Request Information

URI Parameters

None.

Body Parameters

UpdateDeliveryOrderQuantityDto
NameDescriptionTypeAdditional information
QuantityRealized

decimal number

None.

PackQuantityRealized

integer

None.

PalletQuantityRealized

integer

None.

DeliveryOrderId

integer

None.

TrackerNumber

string

None.

WarehouseId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "QuantityRealized": 1.0,
  "PackQuantityRealized": 2,
  "PalletQuantityRealized": 3,
  "DeliveryOrderId": 4,
  "TrackerNumber": "sample string 5",
  "WarehouseId": 6
}

application/xml, text/xml

Sample:
<UpdateDeliveryOrderQuantityDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestApi.DTO.DeliveryOrder">
  <DeliveryOrderId>4</DeliveryOrderId>
  <PackQuantityRealized>2</PackQuantityRealized>
  <PalletQuantityRealized>3</PalletQuantityRealized>
  <QuantityRealized>1</QuantityRealized>
  <TrackerNumber>sample string 5</TrackerNumber>
  <WarehouseId>6</WarehouseId>
</UpdateDeliveryOrderQuantityDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.