Skip to main content
POST
https://snip.sa
/
api
/
urls
/
bulk-delete
curl -X POST https://snip.sa/api/urls/bulk-delete \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key_here" \
  -d '{
    "ids": [
      "507f1f77bcf86cd799439011",
      "507f1f77bcf86cd799439012",
      "507f1f77bcf86cd799439013"
    ]
  }'
{
  "success": true,
  "message": "3 URLs deleted successfully"
}
This feature requires the bulk_operations permission (Pro/Enterprise plans).

Request Body

ids
array
required
Array of URL IDs to delete
This action is permanent and cannot be undone.
curl -X POST https://snip.sa/api/urls/bulk-delete \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key_here" \
  -d '{
    "ids": [
      "507f1f77bcf86cd799439011",
      "507f1f77bcf86cd799439012",
      "507f1f77bcf86cd799439013"
    ]
  }'
{
  "success": true,
  "message": "3 URLs deleted successfully"
}