Skip to main content
POST
/
v1
/
scraped-products
/
sellable
/
bulk
/
activate
Bulk activate sellable products
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
}

Body

application/json

Bulk sellable products operation request

category
string

Category filter

subcategory
string

Subcategory filter

is_rfc_item
enum<string>
default:all

Is RFC item filter

Available options:
true,
false,
all
is_active
enum<string>
default:all

Is active filter

Available options:
true,
false,
all
dry_run
boolean
default:false

Preview without making changes

limit
integer
default:1000

Max products to process

Required range: 1 <= x <= 10000

Response

Bulk sellable activate result

Bulk sellable activate response

success
enum<boolean>
required
Available options:
true,
false
activated_count
number
required
message
string
dry_run
boolean
eligible_count
number