added

📄 Page payload refinement and inclusion in FormSubmission

We have added two new fields to our Page resource: type and show_page_step, so you always know what kind of page it is and can easily map it to a page inside of ClickFunnels:

  {
    "id": 61,
    "public_id": "HMjyNF",
    "workspace_id": 42000,
    "name": "Great Page",
    "theme_id": null,
    "created_at": "2025-01-01T00:00:00.000Z",
    "updated_at": "2025-01-01T00:00:00.000Z",
    "type": "landing_page",
    "current_path": "/my-page-example",
    "show_page_step": null
  }

For more information, you can refer to our Page docs.

We are also now including the full page information inside of our FormSubmission resource, so you know where your submissions come from:

  {
    "id": 2,
    "public_id": "IYHjDs",
    "contact_id": 85,
    "workspace_id": 42000,
    "page_id": 11,
    "created_at": null,
    "updated_at": null,
    "data": {
      "url": "/contact",
      "first_name": "John",
      "last_name": "Doe",
      "email": "[email protected]"
    },
    "page": {
      "id": 11,
      "public_id": "yTPMCR",
      "workspace_id": 42000,
      "name": "Great Page",
      "theme_id": null,
      "created_at": "2025-01-01T00:00:00.000Z",
      "updated_at": "2025-01-01T00:00:00.000Z",
      "type": "landing_page",
      "current_path": "/my-page-example",
      "show_page_step": null
    }
  }