POST
/
funnels
/
builder
/
section-template
/
insert
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/builder/section-template/insert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"locationId": "<string>",
"funnelSection": {}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', locationId: '<string>', funnelSection: {}})
};
fetch('https://services.leadconnectorhq.com/funnels/builder/section-template/insert', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/builder/section-template/insert"
payload = {
"name": "<string>",
"locationId": "<string>",
"funnelSection": {}
}
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?
⌘I
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/builder/section-template/insert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"locationId": "<string>",
"funnelSection": {}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', locationId: '<string>', funnelSection: {}})
};
fetch('https://services.leadconnectorhq.com/funnels/builder/section-template/insert', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/builder/section-template/insert"
payload = {
"name": "<string>",
"locationId": "<string>",
"funnelSection": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)