POST api/audPackage/updatePackages
Request Information
URI Parameters
None.
Body Parameters
PackageUpdatePack| Name | Description | Type | Additional information |
|---|---|---|---|
| PackageID | integer |
None. |
|
| ClientID | integer |
None. |
|
| ClientShortName | string |
None. |
|
| WarehouseID | integer |
None. |
|
| WarehouseCode | string |
None. |
|
| PackageIDs | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PackageID": 1,
"ClientID": 2,
"ClientShortName": "sample string 3",
"WarehouseID": 4,
"WarehouseCode": "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">
<ClientID>2</ClientID>
<ClientShortName>sample string 3</ClientShortName>
<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>
<WarehouseCode>sample string 5</WarehouseCode>
<WarehouseID>4</WarehouseID>
</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>