ClickFunnels Contacts API

The Contacts API from ClickFunnels — 1 operation(s) for contacts.

OpenAPI Specification

clickfunnels-contacts-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ClickFunnels 2.0 Contacts API
  description: 'REST API for managing workspaces, funnels, pages, products, contacts,

    orders, subscriptions, and fulfillments in ClickFunnels 2.0.

    Account-level resources (teams, workspaces) are served from

    https://accounts.myclickfunnels.com. Workspace-scoped resources are served

    from a per-workspace subdomain (https://{workspace}.myclickfunnels.com).

    Authentication uses a Bearer access token; a User-Agent header is required.

    '
  version: 2.0.0
  contact:
    name: ClickFunnels Developers
    url: https://developers.myclickfunnels.com
servers:
- url: https://accounts.myclickfunnels.com
  description: Account / team-level endpoints
- url: https://{workspace}.myclickfunnels.com
  description: Workspace-scoped endpoints
  variables:
    workspace:
      default: myteam
      description: Workspace subdomain
security:
- BearerAuth: []
tags:
- name: Contacts
paths:
  /api/v2/workspaces/{workspace_id}/contacts:
    get:
      summary: List contacts for a workspace
      operationId: listContacts
      tags:
      - Contacts
      parameters:
      - in: path
        name: workspace_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of contacts
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: ClickFunnels 2.0 API access token issued per team.