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

# Submit Form

> Submits a reader-facing form. `<field_name>` and `<file_field>` represent the form's own dynamically-defined fields — send whichever field names that specific form schema declares.



## OpenAPI

````yaml /openapi/content-management.json post /publisher/{publisher_id}/form/{pk}/submit/
openapi: 3.1.0
info:
  title: Publive Content Management API
  version: 1.0.0
  description: >-
    Read/write API for managing publisher content: categories, tags, posts, live
    blogs, media, custom content types, custom components, forms, reader
    accounts, and newsletter subscriptions.
servers:
  - url: https://cms.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Categories
  - name: Tags
  - name: Posts
  - name: Live Blogs
  - name: Media Library
  - name: Custom Content Types
  - name: Custom Components
  - name: Forms
  - name: Reader
  - name: Newsletter
paths:
  /publisher/{publisher_id}/form/{pk}/submit/:
    post:
      tags:
        - Forms
      summary: Submit Form
      description: >-
        Submits a reader-facing form. `<field_name>` and `<file_field>`
        represent the form's own dynamically-defined fields — send whichever
        field names that specific form schema declares.
      operationId: submitForm
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - name: pk
          in: path
          required: true
          schema:
            type: string
          description: Form schema ID
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                schema:
                  type: string
                g-recaptcha-response:
                  type: string
              required:
                - schema
                - g-recaptcha-response
              additionalProperties: true
              description: >-
                Additional properties are the form's own dynamic field names
                (text values or files).
      responses:
        '201':
          description: Submitted
        '400':
          description: Invalid field
        '403':
          description: Captcha failed
        '500':
          description: Server error
      security:
        - formSubmissionAuth: []
components:
  parameters:
    PublisherId:
      name: publisher_id
      in: path
      required: true
      schema:
        type: string
      description: Your Publisher ID
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.
    formSubmissionAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Access token used for PubliveAPI requests. Sent as the raw token value —
        no "Basic" or "Bearer" prefix.

````