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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Create project

> Creates a project inside an organization. Requires project:create.



## OpenAPI

````yaml https://automate.ax/api/v1/openapi.json post /organizations/{organizationId}/projects
openapi: 3.1.1
info:
  title: Automate.ax API
  version: 0.0.0
servers:
  - url: https://automate.ax/api/v1
security:
  - bearerAuth: []
paths:
  /organizations/{organizationId}/projects:
    post:
      tags:
        - Projects
      summary: Create project
      description: Creates a project inside an organization. Requires project:create.
      operationId: createProject
      parameters:
        - name: organizationId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
                name:
                  type: string
                  minLength: 1
                  maxLength: 255
              required:
                - name
      responses:
        '201':
          description: Project created.
          content:
            application/json:
              schema:
                type: object
                properties:
                  activeDeploymentId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  id:
                    type: string
                  name:
                    type: string
                  organizationId:
                    type: string
                  createdAt:
                    type: string
                    format: date-time
                    x-native-type: date
                  createdBy:
                    anyOf:
                      - type: string
                      - type: 'null'
                  org:
                    type: object
                    properties:
                      id:
                        type: string
                      name:
                        type: string
                    required:
                      - id
                      - name
                  activeAutomations:
                    type: array
                    items:
                      type: object
                      properties:
                        description:
                          type: string
                        id:
                          type: string
                        identityKey:
                          type: string
                      required:
                        - description
                        - id
                        - identityKey
                  txid:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                required:
                  - activeDeploymentId
                  - id
                  - name
                  - organizationId
                  - createdAt
                  - createdBy
                  - org
                  - activeAutomations
                  - txid
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Automate.ax user session bearer token.

````