Endpoint
{{baseUrl}}/api/v1/warehouses/:warehouseId/storageLocations/:storageLocationId/items
liefert nur “406 Not Acceptable” obwohl korrekte warehouseId und storageLocationId angegeben wird.
Fehler in der API oder übersehe ich etwas?
Beispiel: Response auf StoreLocationList:
"data": [
{
"id": "3",
"warehouse": {
"id": "2"
},
"designation": "OEAGL1",
"description": "",
"project": null,
"sort": 0,
}
}
],
<cut>
}
}
=> warehouseId = 2, storageLocationId = 3
Request:
{{baseUrl}}/api/v1/warehouses/2/storageLocations/3/items
=> “406 Not Acceptable”
Was ist hier falsch?

