POST api/storageCards/GetMultipleStorageCards?changedDate={changedDate}&includeInactive={includeInactive}

Get storagecard information for multiple storage card Ids.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
changedDate

Only fetch storage cards with changed date greater or equal to this parameter

date

Required

includeInactive

Indicates wheter you want to include closed storage cards

boolean

Required

Body Parameters

List of storage card ids, send in body

Collection of globally unique identifier

Remarks

This method is a HttpPost method due to the fact that we get the storage card ids from the body, and this isn't supported by all clients.
This will only fetch information, it will not save/update any data in the database.

Example

None.

Request Formats

application/json, text/json

Sample:
[
  "24ac8fe4-49f1-49c1-be8a-1c4d40847425",
  "c326a73a-3493-44ce-8ad8-ece319b34600"
]

application/xml, text/xml

Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <guid>24ac8fe4-49f1-49c1-be8a-1c4d40847425</guid>
  <guid>c326a73a-3493-44ce-8ad8-ece319b34600</guid>
</ArrayOfguid>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Guid[]'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.