v1
latestOpenAPI 3.0.02026-07-1315476656.4 KBOrder
Find order positions
Returns all positions of an order
get/Order/{orderId}/getPositions
Path parameters
orderIdinteger required
ID of order to return the positions
Query parameters
limitinteger
limits the number of entries returned
offsetinteger
set the index where the returned entries start
embedstring[]
Get some additional information. Embed can handle multiple values, they must be separated by comma.
Response
Successful operation
Example response
{
"objects": [
{
"id": "0",
"objectName": "OrderPos",
"create": "01.01.2020",
"update": "01.01.2020",
"order": {
"id": "0",
"objectName": "Order"
},
"part": {
"id": "0",
"objectName": "Part"
},
"quantity": "1",
"price": "100",
"priceNet": "100",
"priceTax": "19",
"priceGross": "119",
"name": "Dragonglass",
"unity": {
"id": "0",
"objectName": "Unity"
},
"sevClient": {
"id": "0"
},
"positionNumber": "1",
"taxRate": "19"
}
]
}