GET api/Actions/MoveOrder?startdate={startdate}&enddate={enddate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startdate | date |
None. |
|
| enddate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MoveOrderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| date | date |
None. |
|
| docNum | integer |
None. |
|
| fromStorageName | string |
None. |
|
| toStorageName | string |
None. |
|
| mtName | string |
None. |
|
| qty | decimal number |
None. |
|
| comment | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"date": "2025-12-10T08:17:13.3112605+04:00",
"docNum": 2,
"fromStorageName": "sample string 3",
"toStorageName": "sample string 4",
"mtName": "sample string 5",
"qty": 6.0,
"comment": "sample string 7"
},
{
"date": "2025-12-10T08:17:13.3112605+04:00",
"docNum": 2,
"fromStorageName": "sample string 3",
"toStorageName": "sample string 4",
"mtName": "sample string 5",
"qty": 6.0,
"comment": "sample string 7"
}
]
text/html
Sample:
[{"date":"2025-12-10T08:17:13.3112605+04:00","docNum":2,"fromStorageName":"sample string 3","toStorageName":"sample string 4","mtName":"sample string 5","qty":6.0,"comment":"sample string 7"},{"date":"2025-12-10T08:17:13.3112605+04:00","docNum":2,"fromStorageName":"sample string 3","toStorageName":"sample string 4","mtName":"sample string 5","qty":6.0,"comment":"sample string 7"}]
application/xml, text/xml
Sample:
<ArrayOfMoveOrderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gregsys.DTO">
<MoveOrderDTO>
<comment>sample string 7</comment>
<date>2025-12-10T08:17:13.3112605+04:00</date>
<docNum>2</docNum>
<fromStorageName>sample string 3</fromStorageName>
<mtName>sample string 5</mtName>
<qty>6</qty>
<toStorageName>sample string 4</toStorageName>
</MoveOrderDTO>
<MoveOrderDTO>
<comment>sample string 7</comment>
<date>2025-12-10T08:17:13.3112605+04:00</date>
<docNum>2</docNum>
<fromStorageName>sample string 3</fromStorageName>
<mtName>sample string 5</mtName>
<qty>6</qty>
<toStorageName>sample string 4</toStorageName>
</MoveOrderDTO>
</ArrayOfMoveOrderDTO>