curl --request POST \
--url http://localhost:3000/v1/scraped-products/sellable/bulk/activate \
--header 'Content-Type: application/json' \
--data '
{
"category": "<string>",
"subcategory": "<string>",
"is_rfc_item": "all",
"is_active": "all",
"dry_run": false,
"limit": 1000
}
'{
"success": true,
"activated_count": 123,
"message": "<string>",
"dry_run": true,
"eligible_count": 123
}Bulk activate sellable products with filters
curl --request POST \
--url http://localhost:3000/v1/scraped-products/sellable/bulk/activate \
--header 'Content-Type: application/json' \
--data '
{
"category": "<string>",
"subcategory": "<string>",
"is_rfc_item": "all",
"is_active": "all",
"dry_run": false,
"limit": 1000
}
'{
"success": true,
"activated_count": 123,
"message": "<string>",
"dry_run": true,
"eligible_count": 123
}Bulk sellable products operation request
Category filter
Subcategory filter
Is RFC item filter
true, false, all Is active filter
true, false, all Preview without making changes
Max products to process
1 <= x <= 10000