POST Logistics/PackageLabels
Get all the PackageLabels
Request Information
URI Parameters
None.
Body Parameters
GetPackageLabels| Name | Description | Type | Additional information |
|---|---|---|---|
| IDs | Collection of integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"IDs": [
1,
2
],
"Lang": "sample string 1",
"StoreID": 2
}
application/xml, text/xml
Sample:
<GetPackageLabels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
<Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 1</Lang>
<StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">2</StoreID>
<IDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</IDs>
</GetPackageLabels>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of PackageLabel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| URL |
File URL |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"URL": "sample string 2"
},
{
"ID": 1,
"URL": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfPackageLabel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Logistics">
<PackageLabel>
<ID>1</ID>
<URL>sample string 2</URL>
</PackageLabel>
<PackageLabel>
<ID>1</ID>
<URL>sample string 2</URL>
</PackageLabel>
</ArrayOfPackageLabel>