Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
vikas kushwaha
/
lake-estate
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Registry
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit c107bcaf
authored
2025-02-24 17:39:41 +0530
by
Mukesh Kabra
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
lake
1 parent
30d78182
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
1 deletions
send_leads.php
send_leads.php
View file @
c107bca
...
...
@@ -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
}
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment