{primary} HTTP POST allows lead data to be sent to your Calldrip account via
HTTP POSTmethod. A call will then be sent as specified by your source and its attached flow.
https://calldrip.colynk.com/api/api.php
| Parameter | Description |
|---|---|
| fname | First name from your form |
| lname | Lst name from your form |
| Email from your form | |
| phone | Phone number from your form |
| whisper | Field to be whispered to agent before call is placed |
| notes | Comments or info to be added to notes section |
| user | The registered account holders username* |
| sourceid | The numeric ID of the source* |
| apipass | API password* |
| apikey | API Key* |
{info} *API Username, Key, Password, and Source ID's can be found under
My Account>API
The returning result will be in JSON format. You will receive either a success or it will tell you the reason for the failure.
$drip=array('sourceid'=>$sourceid,'fname'=>$fname,'lname'=>$lname,'email'=>$email,'phone'=> $phone,'apikey'=>$apikey,'user'=>$user,'apipass'=>$pass);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://calldrip.colynk.com/api/api.php");
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_SSLVERSION,3);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $drip);
$result = curl_exec($ch);
curl_close($ch);
The Auto-lead Data Format (ADF) is supported, which is the standard used to communicate consumer purchase requests to automotive dealerships.