ClickFunnels Webhooks::Outgoing::Event Type API

The authoritative catalog of webhook event types available for subscription. Use this endpoint to discover the exact string keys to supply in `event_type_ids` when creating or updating a webhook endpoint — do not guess event type identifiers or rely solely on external documentation.

Operations 1

GET /webhooks/outgoing/event_types List Event Types #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/clickfunnels-webhooks-outgoing-eventtype-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

clickfunnels-webhooks-outgoing-eventtype-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ClickFunnels Webhooks::Outgoing::Event Type API
  termsOfService: https://www.clickfunnels.com/terms-of-service
  contact:
    name: ClickFunnels API Team
    url: https://developers.myclickfunnels.com
  x-logo:
    url: https://statics.myclickfunnels.com/image/1126065/file/31edf05760fafe41a82f16a668ab251f.png
  description: 'The ClickFunnels REST API that powers webhooks, native integrations, and Zapier lets you manage your ClickFunnels data, automate your workflows, and recreate ClickFunnels functionality in your own apps.

    '
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: 2.0.0
servers:
- url: https://{subdomain}.myclickfunnels.com/api/v2
  description: ClickFunnels API
  variables:
    subdomain:
      default: myworkspace
security:
- BearerAuth: []
tags:
- name: Webhooks::Outgoing::EventType
  description: 'The authoritative catalog of webhook event types available for subscription. Use this endpoint to discover the exact string keys to supply in `event_type_ids` when creating or updating a webhook endpoint — do not guess event type identifiers or rely solely on external documentation.

    '
paths:
  /webhooks/outgoing/event_types:
    get:
      tags:
      - Webhooks::Outgoing::EventType
      summary: List Event Types
      description: 'Returns the complete, authoritative catalog of webhook event types that a webhook endpoint can subscribe to.

        Each entry''s `id` field is the exact dotted/slashed string key (e.g. `contact.updated`, `order.completed`, `orders/invoice.paid`)

        to supply verbatim in the `event_type_ids` array when creating or updating a webhook endpoint.

        Fetch this list instead of guessing event type identifiers or consulting an external reference — this is the canonical source.

        This endpoint is global (not scoped to a workspace) and requires a valid API token.

        '
      operationId: listWebhooksOutgoingEventTypes
      security:
      - BearerAuth: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhooksOutgoingEventTypeAttributes'
              example:
              - id: contact.created
                topic: contact
              - id: contact.updated
                topic: contact
              - id: contact.identified
                topic: contact
              - id: order.completed
                topic: order
              - id: orders/invoice.paid
                topic: orders/invoice
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              example:
                error: API key missing or invalid
components:
  schemas:
    WebhooksOutgoingEventTypeAttributes:
      type: object
      title: Webhooks Outgoing Event Types
      description: 'An entry in the authoritative catalog of webhook event types that a webhook endpoint can subscribe to.

        The `id` field is the exact dotted/slashed string key (e.g. `contact.updated`, `order.completed`, `orders/invoice.paid`)

        to supply verbatim in the `event_type_ids` array when creating or updating a webhook endpoint.

        Use GET /api/v2/webhooks/outgoing/event_types to retrieve the full list of valid keys.

        '
      properties:
        id:
          type: string
          description: 'The event type key — a dotted or slashed string such as `contact.updated`, `order.completed`, or `orders/invoice.paid`.

            This is the exact value to use verbatim in the `event_type_ids` array of a webhook endpoint.

            '
        topic:
          type: string
          description: 'The leading segment of the event type `id` (e.g. `contact`, `order`, `orders/invoice`).

            Useful for grouping related event types.

            '
      example:
        id: contact.updated
        topic: contact
      required:
      - id
      - topic
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
externalDocs:
  description: More in-depth guides and further resources
  url: https://developers.myclickfunnels.com