GET api/orders?query={query}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| query | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductionOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| number | integer |
None. |
|
| order_code | string |
None. |
|
| article_code | string |
None. |
|
| article_description | string |
None. |
|
| qty_kg | decimal number |
None. |
|
| qty_bags | integer |
None. |
|
| line | integer |
None. |
|
| date | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"number": 2,
"order_code": "sample string 3",
"article_code": "sample string 4",
"article_description": "sample string 5",
"qty_kg": 6.0,
"qty_bags": 7,
"line": 8,
"date": "2025-12-11T11:42:10.9420659+01:00"
},
{
"id": 1,
"number": 2,
"order_code": "sample string 3",
"article_code": "sample string 4",
"article_description": "sample string 5",
"qty_kg": 6.0,
"qty_bags": 7,
"line": 8,
"date": "2025-12-11T11:42:10.9420659+01:00"
}
]