Webflow API and Documentation · Arazzo Workflow

Webflow Fulfill Order

Version 1.0.0

List a site's orders, read the first order, and mark it fulfilled.

1 workflow 1 source API 1 provider
View Spec View on GitHub CMSContent ManagementE-CommerceNo-CodePublishingWeb DevelopmentArazzoWorkflows

Provider

webflow-api-and-documentation-webflow

Workflows

fulfill-order
List orders, read the first one, and mark it fulfilled.
Lists the orders on a site filtered to unfulfilled, retrieves the first order, and updates its status to fulfilled.
3 steps inputs: accessToken, sendOrderFulfilledEmail, siteId outputs: orderId, status
1
listOrders
List unfulfilled orders for the site.
2
getOrder
Read the first order to confirm its current status.
3
fulfillOrder
Mark the order as fulfilled.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Fulfill Order
  summary: List a site's orders, read the first order, and mark it fulfilled.
  description: >-
    Closes the loop on a Webflow ecommerce sale. The workflow lists the orders
    for a site, reads the first order to confirm its current status, and then
    marks that order as fulfilled, optionally sending the customer a fulfillment
    email. Each step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-520.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-520.40
      capability_name: Order Fulfilment Management
      spec: webflow-api-and-documentation-webflow-orders-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: ordersApi
  url: ../openapi/webflow-api-and-documentation-webflow-orders-api-openapi.yml
  type: openapi
workflows:
- workflowId: fulfill-order
  summary: List orders, read the first one, and mark it fulfilled.
  description: >-
    Lists the orders on a site filtered to unfulfilled, retrieves the first
    order, and updates its status to fulfilled.
  inputs:
    type: object
    required:
    - accessToken
    - siteId
    properties:
      accessToken:
        type: string
        description: Webflow OAuth bearer token with ecommerce:read and ecommerce:write scopes.
      siteId:
        type: string
        description: Unique identifier for the Site whose orders are processed.
      sendOrderFulfilledEmail:
        type: boolean
        description: Whether to send the customer the Order Fulfilled email.
  steps:
  - stepId: listOrders
    description: List unfulfilled orders for the site.
    operationId: list-orders
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    - name: status
      in: query
      value: unfulfilled
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstOrderId: $response.body#/orders/0/orderId
  - stepId: getOrder
    description: Read the first order to confirm its current status.
    operationId: get-order
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    - name: order_id
      in: path
      value: $steps.listOrders.outputs.firstOrderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      orderId: $response.body#/orderId
      status: $response.body#/status
  - stepId: fulfillOrder
    description: Mark the order as fulfilled.
    operationId: fulfill-order
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    - name: order_id
      in: path
      value: $steps.getOrder.outputs.orderId
    requestBody:
      contentType: application/json
      payload:
        sendOrderFulfilledEmail: $inputs.sendOrderFulfilledEmail
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      orderId: $response.body#/orderId
      status: $response.body#/status
  outputs:
    orderId: $steps.fulfillOrder.outputs.orderId
    status: $steps.fulfillOrder.outputs.status

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/webflow-api-and-documentation-webflow-fulfill-order-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.