Anthropic Integration Connected
Description
Tracks when a user connects an external integration (e.g., GitHub, Google Drive) to their Anthropic account. Logged for compliance visibility into external data pathways. The integration_type field identifies which service was connected.
Query · python
from panther_anthropic_helpers import anthropic_actor_id, anthropic_alert_context
def rule(event):
return event.get("type") == "integration_user_connected"
def title(event):
actor_email = anthropic_actor_id(event)
integration_type = event.get("integration_type", "<UNKNOWN_TYPE>")
return f"Anthropic: User [{actor_email}] connected [{integration_type}] integration"
def dedup(event):
return anthropic_actor_id(event)
def alert_context(event):
return anthropic_alert_context(event)
Analyst notes
- Find all Anthropic.Activity events by actor:email_address in the 1 hour before and after the alert to understand the context of the integration connection
- Check if actor:email_address has connected other integrations in the past 30 days to identify unusual patterns
- Check if actor:ip_address matches previously seen IP addresses for this actor