The whole hunk
from line 44, old and new numbered
/
lines
from line 44
4444curl --fail-with-body -sS -G \
4545 "https://api.anthropic.com/v1/compliance/activities" \
4646 --header "x-api-key: $ANTHROPIC_COMPLIANCE_ACCESS_KEY" \
47 --header "anthropic-version: 2023-06-01" \
4748 --data-urlencode "created_at.gte=2026-04-20T07:00:00Z" \
4849 --data-urlencode "created_at.lt=2026-04-20T08:00:00Z" \
4950 --data-urlencode "limit=5000"
from line 66
6566curl --fail-with-body -sS -G \
6667 "https://api.anthropic.com/v1/compliance/activities" \
6768 --header "x-api-key: $ANTHROPIC_COMPLIANCE_ACCESS_KEY" \
69 --header "anthropic-version: 2023-06-01" \
6870 --data-urlencode "limit=5000" \
6971 --data-urlencode "before_id=$first_id"
7072```