POST api/audPackage/updatePackages
Request Information
URI Parameters
None.
Body Parameters
PackageUpdatePack| Name | Description | Type | Additional information |
|---|---|---|---|
| PackageID | integer |
None. |
|
| ShipperID | globally unique identifier |
None. |
|
| ShipperName | string |
None. |
|
| FulfillmentCenterID | globally unique identifier |
None. |
|
| WarehouseCode | string |
None. |
|
| WarehouseName | string |
None. |
|
| PackageIDs | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PackageID": 1,
"ShipperID": "f8a7bcec-041f-4123-b306-a10dc793a9ab",
"ShipperName": "sample string 3",
"FulfillmentCenterID": "816fd5ba-330d-4d14-a45f-a3b796278ec0",
"WarehouseCode": "sample string 5",
"WarehouseName": "sample string 6",
"PackageIDs": [
1,
2
]
}
application/xml, text/xml
Sample:
<PackageUpdatePack xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<FulfillmentCenterID>816fd5ba-330d-4d14-a45f-a3b796278ec0</FulfillmentCenterID>
<PackageID>1</PackageID>
<PackageIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</PackageIDs>
<ShipperID>f8a7bcec-041f-4123-b306-a10dc793a9ab</ShipperID>
<ShipperName>sample string 3</ShipperName>
<WarehouseCode>sample string 5</WarehouseCode>
<WarehouseName>sample string 6</WarehouseName>
</PackageUpdatePack>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>