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

# tasks.create



## OpenAPI

````yaml POST /tasks/create
openapi: 3.1.0
info:
  title: Supersonic CRM API
  description: 62 tools for managing your CRM data. Call via CLI, REST, or MCP.
  version: 1.0.0
servers:
  - url: https://api.supersonic.cv
    description: Production
security:
  - bearerAuth: []
paths:
  /tasks/create:
    post:
      tags:
        - tasks
      summary: >-
        Create a new CRM task. Optionally link to records and assign to a
        member.
      operationId: tasks.create
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                  description: Task title
                description:
                  type: string
                priority:
                  type: string
                  enum:
                    - low
                    - medium
                    - high
                    - urgent
                status:
                  type: string
                  enum:
                    - todo
                    - in_progress
                    - done
                due_date:
                  type: string
                  description: ISO datetime
                assigned_to:
                  type: string
                  description: Member UUID
                record_ids:
                  type: array
                  items:
                    type: string
                  description: Record UUIDs to link
              required:
                - title
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Validation error
        '403':
          description: Permission denied
        '429':
          description: Rate limit exceeded
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key: supersonic_live_...'

````