Commit c107bcaf by Mukesh Kabra

lake

1 parent 30d78182
......@@ -62,6 +62,64 @@ class PostData
// do not delete
$curl = curl_init();
$data = [
"name" => $fname,
"state" => "",
"city" => "",
"location" => "",
"budget" => "",
"notes" => "comments",
"email" => $email,
"countryCode" => "91",
"mobile" => $mobile,
"project" => "Lake Nest",
"property" => "Villa",
"leadExpectedBudget" => "6000000",
"propertyType" => "Flat",
"submittedDate" => "28-03-18",
"submittedTime" => "22:22:32",
"subsource" => "",
"leadStatus" => "Schedule Site Visit or Schedule Meeting or Booked or Booking Cancel",
"callRecordingUrl" => "",
"leadScheduledDate" => "28-03-18",
"leadScheduleTime" => "22:22:32",
"bhkType" => "Simplex/Duplex/PentHouse/Others",
"leadBookedDate" => "28-03-18",
"leadBookedTime" => "22:22:32",
"additionalProperties" => [
"EnquiredFor" => "Buy/Sale/Rent",
"BHKType" => "Simplex/Duplex/PentHouse/Others",
"NoOfBHK" => "0",
"key1" => "value1",
"key2" => "value1"
]
];
// var_dump($data);
curl_setopt_array($curl, [
CURLOPT_URL => "https://connect.leadrat.com/api/v1/integration/GoogleAds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode($data),
CURLOPT_HTTPHEADER => [
"API-Key: ZDMzMmQ2MjEtMWRhNi00ZDg0LTkwMDctMWQ1ZDI1YzIzZGRh",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
// var_dump($response);
// die;
return true;
}
}
\ No newline at end of file
}
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!