POST api/order/SaveSupply

Request Information

URI Parameters

None.

Body Parameters

SupplyDTO
NameDescriptionTypeAdditional information
ByEmployeeId

integer

None.

FromDate

string

None.

ToDate

string

None.

TotalPOB

decimal number

None.

TotalSupply

decimal number

None.

BusinessPartnerId

integer

None.

EmployeeId

integer

None.

SessionID

string

None.

DeviceID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ByEmployeeId": 1,
  "FromDate": "sample string 2",
  "ToDate": "sample string 3",
  "TotalPOB": 4.0,
  "TotalSupply": 5.0,
  "BusinessPartnerId": 6,
  "EmployeeId": 7,
  "SessionID": "sample string 8",
  "DeviceID": "sample string 9"
}

application/xml, text/xml

Sample:
<SupplyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/application.knh.webapi.BE">
  <DeviceID>sample string 9</DeviceID>
  <EmployeeId>7</EmployeeId>
  <SessionID>sample string 8</SessionID>
  <BusinessPartnerId>6</BusinessPartnerId>
  <ByEmployeeId>1</ByEmployeeId>
  <FromDate>sample string 2</FromDate>
  <ToDate>sample string 3</ToDate>
  <TotalPOB>4</TotalPOB>
  <TotalSupply>5</TotalSupply>
</SupplyDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.