Insert disqualified record
documentedNotify Drips that a phone number is disqualified.
POST /Disqualified/Insert/{API-Key}Disqualifiedno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.drips.com/v1/Disqualified/Insert/{{$drips_api_key}}" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"Phone": "{{$phone}}", "CountryCode": "{{$country_code}}", "DisqualifiedReason": "{{$disqualified_reason}}", "LeadId": "{{$lead_id}}", "WebhookURL": "{{$webhook_url}}"}'