GET api/Actions/OutOrder?startdate={startdate}&enddate={enddate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startdate

date

None.

enddate

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OutOrderDTO
NameDescriptionTypeAdditional information
date

date

None.

docNum

integer

None.

storageName

string

None.

mtName

string

None.

qty

decimal number

None.

comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "date": "2025-06-03T04:38:35.1704913+04:00",
    "docNum": 2,
    "storageName": "sample string 3",
    "mtName": "sample string 4",
    "qty": 5.0,
    "comment": "sample string 6"
  },
  {
    "date": "2025-06-03T04:38:35.1704913+04:00",
    "docNum": 2,
    "storageName": "sample string 3",
    "mtName": "sample string 4",
    "qty": 5.0,
    "comment": "sample string 6"
  }
]

text/html

Sample:
[{"date":"2025-06-03T04:38:35.1704913+04:00","docNum":2,"storageName":"sample string 3","mtName":"sample string 4","qty":5.0,"comment":"sample string 6"},{"date":"2025-06-03T04:38:35.1704913+04:00","docNum":2,"storageName":"sample string 3","mtName":"sample string 4","qty":5.0,"comment":"sample string 6"}]

application/xml, text/xml

Sample:
<ArrayOfOutOrderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gregsys.DTO">
  <OutOrderDTO>
    <comment>sample string 6</comment>
    <date>2025-06-03T04:38:35.1704913+04:00</date>
    <docNum>2</docNum>
    <mtName>sample string 4</mtName>
    <qty>5</qty>
    <storageName>sample string 3</storageName>
  </OutOrderDTO>
  <OutOrderDTO>
    <comment>sample string 6</comment>
    <date>2025-06-03T04:38:35.1704913+04:00</date>
    <docNum>2</docNum>
    <mtName>sample string 4</mtName>
    <qty>5</qty>
    <storageName>sample string 3</storageName>
  </OutOrderDTO>
</ArrayOfOutOrderDTO>