Skip to main content
POST
/
funnels
/
funnel
/
clone-funnel-to-locations
cURL
curl --request POST \
  --url https://services.leadconnectorhq.com/funnels/funnel/clone-funnel-to-locations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "funnelId": "oo717JbWSeRz1HjyO1dw",
  "funnelName": "Test",
  "locationIds": [
    "g4omF7KTvuECF3P4orSV"
  ],
  "webinarProperties": {}
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
funnelId
string
required

The ID of the funnel

Example:

"oo717JbWSeRz1HjyO1dw"

funnelName
string
required

The name of the funnel

Example:

"Test"

locationIds
string[]
required

An array of location IDs

Example:
["g4omF7KTvuECF3P4orSV"]
webinarProperties
object

Webinar scheduling properties for live webinars

Response

201 - undefined
Last modified on March 4, 2026