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

# Create meeting outcome

> Create a new meeting outcome for the workspace.

<Info>Replace `{your-subdomain}` with your workspace’s subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled/meeting-outcomes.yaml POST /meeting-outcomes
openapi: 3.0.3
info:
  title: NeetoCal Meeting Outcomes APIs
  version: 2.0.0
servers:
  - description: NeetoCal APIs
    url: https://{your-subdomain}.neetocal.com/api/external/v2
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Meeting outcomes
    description: >-
      APIs to manage meeting outcomes for bookings. Meeting outcomes help
      categorize and track the result of meetings (e.g., "Pricing Discussion",
      "Follow-up Required"). System outcomes are read-only and cannot be
      modified or deleted.
paths:
  /meeting-outcomes:
    post:
      tags:
        - Meeting outcomes
      summary: Create a meeting outcome
      description: Create a new meeting outcome for the workspace.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/meeting_outcome_create_request'
            example:
              meeting_outcome:
                name: Pricing Discussion
                color: yellow
      responses:
        '201':
          description: Created - Meeting outcome created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/meeting_outcome'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
  schemas:
    meeting_outcome_create_request:
      type: object
      required:
        - meeting_outcome
      properties:
        meeting_outcome:
          type: object
          properties:
            name:
              type: string
              description: Name of the meeting outcome.
              example: Pricing Discussion
            color:
              type: string
              description: Color for the meeting outcome.
              enum:
                - blue
                - orange
                - gray
                - red
                - yellow
                - violet
                - pink
                - teal
                - cyan
                - green
              example: yellow
          required:
            - name
            - color
    meeting_outcome:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the meeting outcome.
          example: 59413def-60eb-47c6-b390-098fcf583b66
        name:
          type: string
          description: Name of the meeting outcome.
          example: Pricing Discussion
        color:
          type: string
          description: Color assigned to the meeting outcome.
          enum:
            - blue
            - orange
            - gray
            - red
            - yellow
            - violet
            - pink
            - teal
            - cyan
            - green
          example: yellow
        kind:
          type: string
          description: Kind of the meeting outcome.
          example: custom
        color_hex:
          type: string
          description: Hex color code for the meeting outcome.
          example: '#EAB308'
        is_system:
          type: boolean
          description: >-
            Whether this is a system-defined meeting outcome. System outcomes
            cannot be modified or deleted.
          example: false
        is_organization_owned:
          type: boolean
          description: Whether this outcome belongs to the organization.
          example: true

````