curl --request DELETE \
--url https://app.skulabs.com/s/job/item/bulk_remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
]
}
'{
"success": true
}Remove multiple items in a single bulk operation.
curl --request DELETE \
--url https://app.skulabs.com/s/job/item/bulk_remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
]
}
'{
"success": true
}