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

# Create project

> Creates a new isolated deployment project.



## OpenAPI

````yaml /api-reference/openapi.yaml post /v1/projects
openapi: 3.1.0
info:
  title: Qumo Deploy REST API
  description: >
    The Qumo Deploy REST API provides programmatic control over edge relay
    clusters,

    ephemeral token issuance, tenant lifecycle, bot machine identities, and
    billing.
  version: 1.0.0
servers:
  - url: https://api.qumo-deploy.com
    description: Production Control Plane
  - url: http://localhost:8080
    description: Local Development / Sandbox
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /v1/projects:
    post:
      summary: Create project
      description: Creates a new isolated deployment project.
      parameters:
        - in: query
          name: tenant_id
          schema:
            type: string
          required: false
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectRequest'
      responses:
        '200':
          description: Created project
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
        '409':
          description: Conflict (duplicate project name)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    CreateProjectRequest:
      type: object
      required:
        - name
      properties:
        name:
          type: string
          example: live-stream-prod
        environment:
          type: string
          enum:
            - production
            - test
          default: production
    Project:
      type: object
      required:
        - id
        - name
        - tenant_id
        - environment
      properties:
        id:
          type: string
          example: prj_prod_01
        name:
          type: string
          example: live-stream-prod
        tenant_id:
          type: string
          example: ten_8f29acb0
        environment:
          type: string
          enum:
            - production
            - test
          example: production
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          example: invalid or expired token
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |
        Bearer token (User session or Bot machine token).
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Project-scoped API key (`qumo_live_...` or `qumo_test_...`).

````