POST
/
funnels
/
snapshot
/
v2
/
load-funnels
/
{location_id}
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dataPaths": [
"<string>"
],
"options": {}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({dataPaths: ['<string>'], options: {}})
};
fetch('https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id}"
payload = {
"dataPaths": ["<string>"],
"options": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Last modified on May 19, 2026
Was this page helpful?
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dataPaths": [
"<string>"
],
"options": {}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({dataPaths: ['<string>'], options: {}})
};
fetch('https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/snapshot/v2/load-funnels/{location_id}"
payload = {
"dataPaths": ["<string>"],
"options": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)