> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mentionpath.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Webflow draft



## OpenAPI

````yaml /openapi.yaml patch /domains/{domainId}/webflow/drafts/{itemId}
openapi: 3.1.0
info:
  title: Mentionpath API
  version: 1.0.0
  description: >
    Programmatic access to Mentionpath workspace data and actions.


    The REST API mirrors the MCP tool surface. Reads return immediately.
    Mutations may return

    `202` with `APPROVAL_REQUIRED` when invoked with a token that requires human
    approval.


    Base URL: `https://api.mentionpath.ai/api/v1`
servers:
  - url: https://api.mentionpath.ai/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Domains
  - name: Prompts
  - name: Audits
  - name: Competitors
  - name: Visibility
  - name: Mentions
  - name: Traffic
  - name: Webflow
  - name: Approvals
paths:
  /domains/{domainId}/webflow/drafts/{itemId}:
    patch:
      tags:
        - Webflow
      summary: Update Webflow draft
      operationId: webflowUpdateDraft
      parameters:
        - $ref: '#/components/parameters/domainId'
        - name: itemId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - collectionId
                - fieldData
              properties:
                collectionId:
                  type: string
                fieldData:
                  type: object
                slug:
                  type: string
      responses:
        '200':
          description: Draft updated
        '202':
          description: Approval required
components:
  parameters:
    domainId:
      name: domainId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token or OAuth access token from Account → API in the Mentionpath
        app.

````