Skip to main content
POST
/
funnels
/
funnel
/
clone-funnel-step
cURL
curl --request POST \
  --url https://services.leadconnectorhq.com/funnels/funnel/clone-funnel-step \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "funnelId": "<string>",
  "stepId": "<string>",
  "funnels": [
    "<string>"
  ],
  "locationId": "<string>",
  "userId": "<string>",
  "stepIdToImportInto": "<string>",
  "funnelIdToImport": "<string>",
  "pageIndexToImport": "<string>",
  "pageIndexToImportInto": "<string>"
}
'

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
stepId
string
required
funnels
string[]
required
locationId
string
required
userId
string
required
stepIdToImportInto
string
required
funnelIdToImport
string
required
pageIndexToImport
string
required
pageIndexToImportInto
string
required

Response

201 - undefined
Last modified on March 4, 2026