Get order information
GET
/manualProduction/rest/v1/orders/info/{number}
Returns information about one order
Authorizations
bearerAuth
TypeHTTP (bearer)
Parameters
Path Parameters
number*
Typestring
RequiredExample
"ORD-2024-001"Responses
Order information
application/json
JSON
{
"order": {
"id": 0,
"orderNumber": "string",
"customerId": 0,
"status": "string",
"orderDate": "string",
"deliveryDate": "string"
},
"containers": [
{
}
],
"charges": [
{
"id": 0,
"chargeNumber": "string",
"lotNumber": 0,
"quantity": 0,
"status": "string"
}
],
"lots": [
{
"id": 0,
"lotNumber": "string",
"supplierNr": 0,
"articleNr": 0,
"quantity": 0,
"unit": "string",
"deliveryDate": "string",
"status": "string",
"createdAt": "string"
}
]
}