POST
/
funnels
/
funnel
/
create
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/funnel/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"name": "<string>",
"type": "<string>",
"parentId": "<string>",
"isStoreActive": true,
"webinarProperties": {
"templateName": "<string>",
"formId": "<string>",
"formName": "<string>",
"videoId": "<string>",
"videoUrl": "<string>",
"videoName": "<string>",
"webinarType": "<string>",
"timezone": "<string>",
"endDate": "<string>",
"endTime": "<string>",
"webinarEndTime": "<string>",
"recurring": true,
"recurringSettings": {}
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
locationId: '<string>',
name: '<string>',
type: '<string>',
parentId: '<string>',
isStoreActive: true,
webinarProperties: {
templateName: '<string>',
formId: '<string>',
formName: '<string>',
videoId: '<string>',
videoUrl: '<string>',
videoName: '<string>',
webinarType: '<string>',
timezone: '<string>',
endDate: '<string>',
endTime: '<string>',
webinarEndTime: '<string>',
recurring: true,
recurringSettings: {}
}
})
};
fetch('https://services.leadconnectorhq.com/funnels/funnel/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/funnel/create"
payload = {
"locationId": "<string>",
"name": "<string>",
"type": "<string>",
"parentId": "<string>",
"isStoreActive": True,
"webinarProperties": {
"templateName": "<string>",
"formId": "<string>",
"formName": "<string>",
"videoId": "<string>",
"videoUrl": "<string>",
"videoName": "<string>",
"webinarType": "<string>",
"timezone": "<string>",
"endDate": "<string>",
"endTime": "<string>",
"webinarEndTime": "<string>",
"recurring": True,
"recurringSettings": {}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
201 - undefined
Last modified on May 19, 2026
Was this page helpful?
⌘I
cURL
curl --request POST \
--url https://services.leadconnectorhq.com/funnels/funnel/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"name": "<string>",
"type": "<string>",
"parentId": "<string>",
"isStoreActive": true,
"webinarProperties": {
"templateName": "<string>",
"formId": "<string>",
"formName": "<string>",
"videoId": "<string>",
"videoUrl": "<string>",
"videoName": "<string>",
"webinarType": "<string>",
"timezone": "<string>",
"endDate": "<string>",
"endTime": "<string>",
"webinarEndTime": "<string>",
"recurring": true,
"recurringSettings": {}
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
locationId: '<string>',
name: '<string>',
type: '<string>',
parentId: '<string>',
isStoreActive: true,
webinarProperties: {
templateName: '<string>',
formId: '<string>',
formName: '<string>',
videoId: '<string>',
videoUrl: '<string>',
videoName: '<string>',
webinarType: '<string>',
timezone: '<string>',
endDate: '<string>',
endTime: '<string>',
webinarEndTime: '<string>',
recurring: true,
recurringSettings: {}
}
})
};
fetch('https://services.leadconnectorhq.com/funnels/funnel/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/funnels/funnel/create"
payload = {
"locationId": "<string>",
"name": "<string>",
"type": "<string>",
"parentId": "<string>",
"isStoreActive": True,
"webinarProperties": {
"templateName": "<string>",
"formId": "<string>",
"formName": "<string>",
"videoId": "<string>",
"videoUrl": "<string>",
"videoName": "<string>",
"webinarType": "<string>",
"timezone": "<string>",
"endDate": "<string>",
"endTime": "<string>",
"webinarEndTime": "<string>",
"recurring": True,
"recurringSettings": {}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)