GET v1/Orders/{orderId}/Parameters

Get all Order Parameters.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
orderId

The id of the order.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

A collection of Order Parameters.


Collection of Parameter
NameDescriptionTypeAdditional information
Key

Gets or sets the key.

string

None.

Value

Gets or sets the value.

string

None.

DataType

Specify the data type. Default type is String.

KeyValueParameterDataType

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Key": "sample string 1",
    "Value": "sample string 2",
    "DataType": 0
  },
  {
    "Key": "sample string 1",
    "Value": "sample string 2",
    "DataType": 0
  }
]

application/xml, text/xml

Sample:
<ArrayOfParameter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Parameter>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
    <DataType>String</DataType>
  </Parameter>
  <Parameter>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
    <DataType>String</DataType>
  </Parameter>
</ArrayOfParameter>