Page
Create External Page
Closed Alpha — not yet enabled for all workspaces. Request access at https://developers.myclickfunnels.com/page/code-support.
Create an externally-hosted (SDK) page in a funnel. Unlike internal pages, the visual content lives on your own domain and is registered with ClickFunnels via a lightweight SDK integration.
Required fields:
- external_url: The fully-qualified URL where your page is hosted.
- funnel.funnel_id OR funnel.show_page_step_id: Every external page must be created inside a funnel. Standalone external pages are not supported.
Funnel positioning:
- funnel.funnel_id + optional sort_order: Creates a new show page step in the funnel at the specified zero-based position (0 = first, omit = append at end).
- funnel.show_page_step_id: Swaps the existing step to point at the new external page. The previous page on that step becomes an orphan. sort_order is ignored in this case.
Rejected fields (returns 422 if present): markup, theme_id, current_path, seo_title, seo_description, seo_index, head_code, footer_code, live_data_changes, show_page_step.product_ids.
SDK onboarding: The response includes an sdk block with a token (prefixed cfp_). To register the page:
- Add <meta name="cf-page-token" content="<token>"> to your page's <head>.
- Include the ClickFunnels SDK script tag on the page.
post/workspaces/{workspace_id}/pages/external
Path parameters
workspace_idinteger required
Request body
Response
Created
Example response
{
"id": 9,
"public_id": "kJzvQi",
"workspace_id": 42000,
"name": "Great Page",
"description": "A high-converting sales page",
"theme_id": null,
"seo_title": "Great Page - My Brand",
"seo_description": "Learn more about our amazing offer",
"seo_index": true,
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z",
"type": "funnel_page",
"current_path": "/my-page-canonical",
"url": "https://myteam.myclickfunnels.com/my-funnel-page",
"show_page_step": {
"id": 42,
"public_id": "aBcDeF",
"name": "Best Page Step",
"current_path": "/my-funnel-page",
"sort_order": 0,
"products": []
},
"funnel": {
"id": 123,
"public_id": "xYzAbC",
"name": "My Sales Funnel"
},
"sdk": null,
"markup": "<section>\n <row cols=\"1\">\n <column>\n <headline>Great Page</headline>\n <subheadline>Start your journey here</subheadline>\n </column>\n </row>\n</section>\n"
}