Outlet Stocks Bulk Copy
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"data": [
{
"date": "string",
"soldUnits": 0,
"productId": "string",
"outletId": "string",
"customerType": "unregistered",
"customerId": "string",
"paymentMode": "online",
"_id": "string",
"updated": true,
"remarks": "string"
}
]
}
Request samples
curl --location --request PUT '/outlet-sales/bulk' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": [
{
"date": "string",
"soldUnits": 0,
"productId": "string",
"outletId": "string",
"customerType": "unregistered",
"customerId": "string",
"paymentMode": "online",
"_id": "string",
"updated": true,
"remarks": "string"
}
]
}'
Responses
application/json Modified at 2025-07-28 05:30:37