Webflow API and Documentation · Arazzo Workflow

Webflow Create Product and Publish

Version 1.0.0

Create an ecommerce product with its default SKU, confirm it, then publish the site.

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

Provider

webflow-api-and-documentation-webflow

Workflows

create-product-and-publish
Create a product and default SKU, confirm it, and publish the site.
Creates an ecommerce product with a default SKU, retrieves the created product, and publishes the site to the Webflow subdomain.
3 steps inputs: accessToken, currency, priceValue, productName, productSlug, siteId, skuName, skuSlug outputs: productId
1
createProduct
Create a new product and its default SKU on the site.
2
getProduct
Retrieve the created product to confirm it persisted.
3
publishSite
Publish the site so the new product appears on the storefront.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Create Product and Publish
  summary: Create an ecommerce product with its default SKU, confirm it, then publish the site.
  description: >-
    Adds a new ecommerce product to a Webflow site and makes it live. The
    workflow creates a product together with its default SKU, fetches the
    created product to confirm it persisted, and publishes the site so the
    product appears on the storefront. 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
sourceDescriptions:
- name: productsSkusApi
  url: ../openapi/webflow-api-and-documentation-webflow-products-skus-api-openapi.yml
  type: openapi
- name: sitesApi
  url: ../openapi/webflow-api-and-documentation-webflow-sites-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-product-and-publish
  summary: Create a product and default SKU, confirm it, and publish the site.
  description: >-
    Creates an ecommerce product with a default SKU, retrieves the created
    product, and publishes the site to the Webflow subdomain.
  inputs:
    type: object
    required:
    - accessToken
    - siteId
    - productName
    - productSlug
    - skuName
    - skuSlug
    - priceValue
    properties:
      accessToken:
        type: string
        description: Webflow OAuth bearer token with ecommerce:write and sites:write scopes.
      siteId:
        type: string
        description: Unique identifier for the Site to add the product to.
      productName:
        type: string
        description: Name of the product.
      productSlug:
        type: string
        description: URL slug for the product.
      skuName:
        type: string
        description: Name of the default SKU.
      skuSlug:
        type: string
        description: URL slug for the default SKU.
      priceValue:
        type: integer
        description: Price of the default SKU in the smallest currency unit (e.g. cents).
      currency:
        type: string
        description: ISO currency code for the SKU price (e.g. USD).
  steps:
  - stepId: createProduct
    description: Create a new product and its default SKU on the site.
    operationId: create-product
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    requestBody:
      contentType: application/json
      payload:
        publishStatus: staging
        product:
          fieldData:
            name: $inputs.productName
            slug: $inputs.productSlug
        sku:
          fieldData:
            name: $inputs.skuName
            slug: $inputs.skuSlug
            price:
              value: $inputs.priceValue
              currency: $inputs.currency
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      productId: $response.body#/product/id
  - stepId: getProduct
    description: Retrieve the created product to confirm it persisted.
    operationId: get-product
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    - name: product_id
      in: path
      value: $steps.createProduct.outputs.productId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      productId: $response.body#/product/id
  - stepId: publishSite
    description: Publish the site so the new product appears on the storefront.
    operationId: site-publish
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    requestBody:
      contentType: application/json
      payload:
        publishToWebflowSubdomain: true
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      publishToWebflowSubdomain: $response.body#/publishToWebflowSubdomain
  outputs:
    productId: $steps.createProduct.outputs.productId

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-create-product-and-publish-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.