ClickFunnels Fulfillments API

The Fulfillments API from ClickFunnels — 2 operation(s) for fulfillments.

OpenAPI Specification

clickfunnels-fulfillments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ClickFunnels 2.0 Contacts Fulfillments 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: Fulfillments
paths:
  /api/v2/fulfillments/locations:
    post:
      summary: Create a fulfillment location
      operationId: createFulfillmentLocation
      tags:
      - Fulfillments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Fulfillment location created
  /api/v2/fulfillments:
    post:
      summary: Create a fulfillment
      operationId: createFulfillment
      tags:
      - Fulfillments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Fulfillment created
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: ClickFunnels 2.0 API access token issued per team.