PUT api/order/OnlineOrder/MiscField?onlineOrderId={onlineOrderId}

Update misc field values for a given OnlineOrder. Only input misc fields to update. All fields are not required.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
onlineOrderId

online order # of the order to update.

integer

Required

Body Parameters

Name Value Pairs of misc fields to update.

Dictionary of string [key] and Object [value]

Request Formats

application/xml, text/xml

Sample:
<DictionaryOfStringObject>
  <KeyValuePairOfStringObject>
    <Key>sample string 1</Key>
    <Value />
  </KeyValuePairOfStringObject>
  <KeyValuePairOfStringObject>
    <Key>sample string 3</Key>
    <Value />
  </KeyValuePairOfStringObject>
</DictionaryOfStringObject>

application/json, text/json

Sample:
{
  "sample string 1": {},
  "sample string 3": {}
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedFormatter' to write type 'IDictionary`2'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.