> ## Documentation Index
> Fetch the complete documentation index at: https://speaker-weave.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Submission



## OpenAPI

````yaml /openapi.json post /v1/events/{event_id}/submissions
openapi: 3.1.0
info:
  title: SpeakerWeave API
  version: 1.0.1
  description: >-
    Organization-scoped REST API for conference program data. Authenticate every
    request with an API token from Settings → API tokens, sent as the
    x-access-token header.
servers:
  - url: https://speakerweave.com
security:
  - apiToken: []
paths:
  /v1/events/{event_id}/submissions:
    post:
      tags:
        - v1-public
      summary: Create Submission
      operationId: create_submission_v1_events__event_id__submissions_post
      parameters:
        - name: event_id
          in: path
          required: true
          schema:
            type: string
            title: Event Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmissionCreateRequest'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Create Submission V1 Events  Event Id  Submissions
                  Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SubmissionCreateRequest:
      properties:
        title:
          type: string
          maxLength: 300
          minLength: 1
          title: Title
        abstract:
          type: string
          maxLength: 50000
          title: Abstract
          default: ''
        submitter_email:
          type: string
          maxLength: 320
          minLength: 3
          title: Submitter Email
        submitter_first_name:
          type: string
          maxLength: 200
          title: Submitter First Name
          default: ''
        submitter_last_name:
          type: string
          maxLength: 200
          title: Submitter Last Name
          default: ''
        track_id:
          anyOf:
            - type: string
              maxLength: 64
            - type: 'null'
          title: Track Id
        format_id:
          anyOf:
            - type: string
              maxLength: 64
            - type: 'null'
          title: Format Id
      type: object
      required:
        - title
        - submitter_email
      title: SubmissionCreateRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: x-access-token

````