POST api/Orders/Update

Request Information

URI Parameters

None.

Body Parameters

eOrdersData
NameDescriptionTypeAdditional information
Orders

Collection of eOrderToSave

None.

OrderNote

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Orders": [
    {
      "IdProduct": 1,
      "Qt": 2,
      "DayNumber": 3,
      "Date": "2026-06-19T13:49:16.4563054+02:00"
    },
    {
      "IdProduct": 1,
      "Qt": 2,
      "DayNumber": 3,
      "Date": "2026-06-19T13:49:16.4563054+02:00"
    }
  ],
  "OrderNote": "sample string 1"
}

application/xml, text/xml

Sample:
<eOrdersData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <OrderNote>sample string 1</OrderNote>
  <Orders>
    <eOrderToSave>
      <Date>2026-06-19T13:49:16.4563054+02:00</Date>
      <DayNumber>3</DayNumber>
      <IdProduct>1</IdProduct>
      <Qt>2</Qt>
    </eOrderToSave>
    <eOrderToSave>
      <Date>2026-06-19T13:49:16.4563054+02:00</Date>
      <DayNumber>3</DayNumber>
      <IdProduct>1</IdProduct>
      <Qt>2</Qt>
    </eOrderToSave>
  </Orders>
</eOrdersData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnMessage
NameDescriptionTypeAdditional information
Uri

string

None.

MethodName

string

None.

TypeName

string

None.

MethodSignature

Object

None.

MethodBase

MethodBase

None.

HasVarArgs

boolean

None.

ArgCount

integer

None.

Args

Collection of Object

None.

OutArgCount

integer

None.

OutArgs

Collection of Object

None.

Exception

Exception

None.

ReturnValue

Object

None.

Properties

Dictionary of Object [key] and Object [value]

None.

LogicalCallContext

LogicalCallContext

None.

Response Formats

application/json, text/json

Sample:

Sample not available.