POST
/stock-takes.json
curl \
--request POST 'http://api.example.com/v1/stock-takes.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"notes":"string","reference":"string","status":"pending","userId":42,"warehouseId":42}'
Request examples
{
"notes": "string",
"reference": "string",
"status": "pending",
"userId": 42,
"warehouseId": 42
}
Response examples (200)
{
"createdAt": "2025-05-04T09:42:00Z",
"id": 42,
"notes": "string",
"reference": "string",
"status": "pending",
"updatedAt": "2025-05-04T09:42:00Z",
"userId": 42,
"warehouseId": 42
}