Skip to main content
DELETE
/
webhooks
/
profiles
curl -X DELETE https://api.dataforb2b.ai/webhooks/profiles \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "profile_ids": [
      "https://www.example.com/in/john-doe/"
    ]
  }'
{
  "removed": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt

Use this file to discover all available pages before exploring further.

Request Body

profile_ids
array
required
List of profile identifiers to stop monitoring. Supports the same formats as the add endpoint.

Response

removed
number
Number of profiles successfully removed from monitoring
curl -X DELETE https://api.dataforb2b.ai/webhooks/profiles \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "profile_ids": [
      "https://www.example.com/in/john-doe/"
    ]
  }'
{
  "removed": 1
}