Skip to main content
DELETE
/
monitors
/
{monitor_id}
/
targets
curl -X DELETE https://api.dataforb2b.ai/monitors/42/targets \
  -H "api_key: YOUR_api_key" -H "Content-Type: application/json" \
  -d '{ "values": ["https://www.linkedin.com/in/carol/"] }'
{ "removed": 1 }
Remove one or more targets from a monitor by their URL or key.

Path Parameters

monitor_id
number
required
The monitor to remove targets from.

Request Body

values
array
required
Target URLs (or keys) to remove.
curl -X DELETE https://api.dataforb2b.ai/monitors/42/targets \
  -H "api_key: YOUR_api_key" -H "Content-Type: application/json" \
  -d '{ "values": ["https://www.linkedin.com/in/carol/"] }'
{ "removed": 1 }