StockTakes
Create a Stocktake
This endpoint creates a stocktake for the given site.
post/inventory/stock-takes
Request body
Example request
{
"description": "Stocktake started on 01/06/2024"
}Response
The stocktake was successfully retrieved
Example response
{
"data": {
"description": "Stocktake started on 01/06/2024",
"currency": "gbp",
"created_by": {
"first_name": "Dan",
"last_name": "Johnson",
"full_name": "Dan Johnson"
},
"posted_by": {
"first_name": "Dan",
"last_name": "Johnson",
"full_name": "Dan Johnson"
},
"created_at": "2024-06-01T12:00:00Z"
}
}