Webflow · Arazzo Workflow

Webflow Create and Publish a Collection Item

Version 1.0.0

Create a live Collection item then publish it so it appears on the live site.

1 workflow 1 source API 1 provider
View Spec View on GitHub CMSE-CommerceNo-CodeWeb DevelopmentArazzoWorkflows

Provider

webflow

Workflows

publish-collection-item
Create a live item in a Collection and publish it.
Creates an item against the live CMS endpoint and then publishes the returned item id so the item goes live on the site.
2 steps inputs: collectionId, itemName, itemSlug outputs: itemId, publishedItemIds
1
createLiveItem
create-item-live
Create the item directly against the live CMS so it is staged for publishing.
2
publishItem
publish-item
Publish the newly created item so it becomes visible on the live site.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Create and Publish a Collection Item
  summary: Create a live Collection item then publish it so it appears on the live site.
  description: >-
    The standard "author and go live" CMS flow. It creates a Collection item
    directly against the live CMS and then publishes that item so the content is
    visible on the published site. Every 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: itemsApi
  url: ../openapi/webflow-items-openapi.yml
  type: openapi
workflows:
- workflowId: publish-collection-item
  summary: Create a live item in a Collection and publish it.
  description: >-
    Creates an item against the live CMS endpoint and then publishes the
    returned item id so the item goes live on the site.
  inputs:
    type: object
    required:
    - collectionId
    - itemName
    - itemSlug
    properties:
      collectionId:
        type: string
        description: The Collection to create and publish the item in.
      itemName:
        type: string
        description: Name of the item to create.
      itemSlug:
        type: string
        description: URL slug of the item.
  steps:
  - stepId: createLiveItem
    description: >-
      Create the item directly against the live CMS so it is staged for
      publishing.
    operationId: create-item-live
    parameters:
    - name: collection_id
      in: path
      value: $inputs.collectionId
    requestBody:
      contentType: application/json
      payload:
        isArchived: false
        isDraft: false
        fieldData:
          name: $inputs.itemName
          slug: $inputs.itemSlug
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      itemId: $response.body#/id
  - stepId: publishItem
    description: >-
      Publish the newly created item so it becomes visible on the live site.
    operationId: publish-item
    parameters:
    - name: collection_id
      in: path
      value: $inputs.collectionId
    requestBody:
      contentType: application/json
      payload:
        itemIds:
        - $steps.createLiveItem.outputs.itemId
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      publishedItemIds: $response.body#/publishedItemIds
      errors: $response.body#/errors
  outputs:
    itemId: $steps.createLiveItem.outputs.itemId
    publishedItemIds: $steps.publishItem.outputs.publishedItemIds

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-publish-collection-item-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 email required.

A second provider on the same verified email joins the account you already have.