Creates store product log entries for a specific store.
POST/api/v2/public/stores/{store_number}/products/stock/storeproductlogs
Creates store product log entries for a specific store.
Path Parameters
store_number: string
Query Parameters
appUserName: optional string
The name of the app user performing the action.
is_counted_quantity: optional boolean
Whether the quantities represent counted values.
is_from_receipt: optional boolean
Whether the log entries originate from a receipt.
Body ParametersJSON
Returns
data: optional array of number
Array of items returned by the operation.
message: optional string
Human-readable message describing the result.
success: optional boolean
Indicates whether the operation completed successfully.
Creates store product log entries for a specific store.
curl https://api.colleqtive.net/api/v2/public/stores/$STORE_NUMBER/products/stock/storeproductlogs \
-X POST \
-H "Authorization: $COLLEQTIVE_BEARER_TOKEN"{
"data": [
0
],
"message": "2 records updated successfully.",
"success": true
}Returns Examples
{
"data": [
0
],
"message": "2 records updated successfully.",
"success": true
}