POST api/sideservice/setorders

Set Orders

Request Information

Parameters

NameDescriptionAdditional information
_param
Parameter with Array Num Orders

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "numOrd": [
    1,
    2,
    3
  ]
}

application/xml, text/xml

Sample:
<SideServiceParameter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <numOrd>
    <long>1</long>
    <long>2</long>
    <long>3</long>
  </numOrd>
</SideServiceParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>