curl --request PATCH \
--url https://services.leadconnectorhq.com/funnels/event/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"level": "pages",
"type": "funnel",
"conversionEnabled": "true",
"pageIds": [
"123456789"
],
"pixelId": "123456789",
"events": [
"page_view",
"order_form"
],
"accessToken": "123456789"
}
'Update Event
curl --request PATCH \
--url https://services.leadconnectorhq.com/funnels/event/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"level": "pages",
"type": "funnel",
"conversionEnabled": "true",
"pageIds": [
"123456789"
],
"pixelId": "123456789",
"events": [
"page_view",
"order_form"
],
"accessToken": "123456789"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
tracking level
funnel, website, webinar, pages "pages"
type
funnel, website, webinar "funnel"
Send Event via conversion api or code
"true"
pageId
["123456789"]pixelId
"123456789"
event names
page_view ["page_view", "order_form"]accessToken
"123456789"
Successful response
Was this page helpful?