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>"
]
}'
/s/job/item/bulk_remove
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>"
]
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK