GET api/StoragePlace/GetSets?storagePlaceID={storagePlaceID}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
storagePlaceID

integer

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MDLStoragePlaceSet
NameDescriptionTypeAdditional 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>