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": "9f1d6e63-e7ef-4140-b5f7-eadb16f071e4",
"ShipperName": "sample string 3",
"FulfillmentCenterID": "53f7fb79-42b5-489f-98d0-0d3d191d2e23",
"WarehouseCode": "sample string 4",
"WarehouseName": "sample string 5",
"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>53f7fb79-42b5-489f-98d0-0d3d191d2e23</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>9f1d6e63-e7ef-4140-b5f7-eadb16f071e4</ShipperID>
<ShipperName>sample string 3</ShipperName>
<WarehouseCode>sample string 4</WarehouseCode>
<WarehouseName>sample string 5</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>