List All Funnel

Endpoint: POST https://app.quizify.io/api/webhooks/subscriptions

This endpoint allows an authenticated user to retrieve a list of all funnels (quizzes) they have published and are eligible for webhook subscription. It is commonly used by third-party services (such as Zapier) to display a list of available funnels so users can choose which one to connect a webhook to.

The response does notinclude any existing webhook URLs or detailed configurations. Instead, it returns essential metadata for each funnel: the funnel ID, title, and shortcode — all required for setting up new webhook subscriptions.

Success Response:

Returns a list of funnels published by the authenticated user. Each item includes:

[
  {
    "id": 101,
    "funnel_title": "Customer Feedback Quiz",
    "funnel_shortcode": "CUSTF123"
  },
  {
    "id": 102,
    "funnel_title": "Product Match Finder",
    "funnel_shortcode": "PRODM456"
  }
]