Sign in

Ingest lead via HTTP POST

documented

Submit lead data to Calldrip via HTTP POST.

POST https://calldrip.colynk.com/api/api.phpLeadsno implementation yet0 runs
No 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://calldrip.colynk.com/api/api.php" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'fname={{$fname}}&lname={{$lname}}&email={{$email}}&phone={{$phone}}&notes={{$notes}}&whisper={{$whisper}}&user={{CALLDRIP_USERNAME}}&sourceid={{$sourceid}}&apikey={{CALLDRIP_API_KEY}}&apipass={{CALLDRIP_SECRET}}'
# Source: Calldrip HTTP POST API documentation (HTTP POST endpoint and parameters)