GET v1/OrderRows/{orderRowId}/Parameters
Get all Order Row Parameters.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderRowId |
The id of the order row. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
A collection of Order Row Parameters.
Collection of OrderRowParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| Key |
Gets or sets the key. |
string |
Required Max length: 50 |
| Value |
Gets or sets the value. |
string |
Max length: 2147483647 |
| DataType |
Specify the data type. Default type is String. |
KeyValueParameterDataType |
Max length: 10 |
| DataTypeName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Key": "sample string 1",
"Value": "sample string 2",
"DataType": 0,
"DataTypeName": "String"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"DataType": 0,
"DataTypeName": "String"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderRowParameter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderRowParameter>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
<DataType>String</DataType>
</OrderRowParameter>
<OrderRowParameter>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
<DataType>String</DataType>
</OrderRowParameter>
</ArrayOfOrderRowParameter>