curl --request POST \
--url http://localhost:3000/v1/scraped-products/bulk/publish \
--header 'Content-Type: application/json' \
--data '
{
"scraped_product_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"default_selling_price": 1,
"is_rfc_item": false
}
'{
"success": true,
"message": "<string>",
"published_count": 123,
"skipped_count": 123
}Bulk publish scraped products to sellable products by IDs
curl --request POST \
--url http://localhost:3000/v1/scraped-products/bulk/publish \
--header 'Content-Type: application/json' \
--data '
{
"scraped_product_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"default_selling_price": 1,
"is_rfc_item": false
}
'{
"success": true,
"message": "<string>",
"published_count": 123,
"skipped_count": 123
}