ClickFunnels Teams API

The Teams API from ClickFunnels — 1 operation(s) for teams.

OpenAPI Specification

clickfunnels-teams-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ClickFunnels 2.0 Contacts Teams 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: Teams
paths:
  /api/v2/teams:
    get:
      summary: List teams
      description: List teams accessible to the authenticated API token.
      operationId: listTeams
      tags:
      - Teams
      responses:
        '200':
          description: List of teams
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: ClickFunnels 2.0 API access token issued per team.