Skip to main content
POST
/
funnels
/
funnel
/
update-funnel-and-page
cURL
curl --request POST \
  --url https://services.leadconnectorhq.com/funnels/funnel/update-funnel-and-page \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "funnelId": "<string>",
  "locationId": "<string>",
  "stepId": "<string>",
  "archivePageId": "<string>",
  "restoreArchivePageId": "<string>",
  "restorePageId": "<string>",
  "funnelStepDetails": {
    "stepId": "<string>",
    "name": "<string>",
    "pages": [
      "<string>"
    ],
    "sequence": 123,
    "url": "<string>",
    "type": "<string>",
    "products": [
      "<string>"
    ],
    "originId": "<string>",
    "split": true,
    "control_traffic": 123,
    "route_all_requests": true,
    "additional_routes": [
      "<string>"
    ],
    "split_started_at": {},
    "split_ended_at": {},
    "domainName": "<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
locationId
string
required
stepId
string
required
archivePageId
string
required
restoreArchivePageId
string
required
restorePageId
string
required
funnelStepDetails
object
required

Response

201 - undefined
Last modified on March 4, 2026