GET v1/Warehouses/{warehouseId}/Parameters

Get all Warehouse's Parameters.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
warehouseId

The id of the Warehouse.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

A collection of Warehouse's Parameters.

Collection of WarehouseParameter
NameDescriptionTypeAdditional information
Id

Gets or sets the id

integer

None.

WarehouseId

Gets or sets the Warehouse's id

integer

None.

Key

Gets or sets the keys.

string

None.

Value

Gets or sets the value.

string

None.

DataType

Gets or sets the DataType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "WarehouseId": 2,
    "Key": "sample string 3",
    "Value": "sample string 4",
    "DataType": "sample string 5"
  },
  {
    "Id": 1,
    "WarehouseId": 2,
    "Key": "sample string 3",
    "Value": "sample string 4",
    "DataType": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWarehouseParameter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <WarehouseParameter>
    <Id>1</Id>
    <WarehouseId>2</WarehouseId>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
    <DataType>sample string 5</DataType>
  </WarehouseParameter>
  <WarehouseParameter>
    <Id>1</Id>
    <WarehouseId>2</WarehouseId>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
    <DataType>sample string 5</DataType>
  </WarehouseParameter>
</ArrayOfWarehouseParameter>