GET api/StoragePlace/GetSets?storagePlaceID={storagePlaceID}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| storagePlaceID | integer |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MDLStoragePlaceSet| Name | Description | Type | Additional information |
|---|---|---|---|
| SetId | integer |
None. |
|
| StoragePlaceId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SetId": 1,
"StoragePlaceId": 2
},
{
"SetId": 1,
"StoragePlaceId": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfMDLStoragePlaceSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared.StoragePlace">
<MDLStoragePlaceSet>
<SetId>1</SetId>
<StoragePlaceId>2</StoragePlaceId>
</MDLStoragePlaceSet>
<MDLStoragePlaceSet>
<SetId>1</SetId>
<StoragePlaceId>2</StoragePlaceId>
</MDLStoragePlaceSet>
</ArrayOfMDLStoragePlaceSet>