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

# Create New Project

> Create a new project under the specified organization



## OpenAPI

````yaml api/openapi.yaml post /projects
openapi: 3.0.3
info:
  title: Relyt Console API
  description: >
    Relyt Console API provides organization management, project management,
    compute resource management, database management and other features.

    This is a modern API service based on Next.js, supporting OAuth2
    authentication and JWT tokens.
  version: 1.0.0
  contact:
    name: Relyt Team
    email: support@relyt.com
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://relytone.data.cloud/api/v1
    description: Production Environment
security:
  - OAuth2: []
  - BearerAuth: []
paths:
  /projects:
    post:
      tags:
        - Projects
      summary: Create New Project
      description: Create a new project under the specified organization
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - name
                - orgId
                - region
                - password
              properties:
                name:
                  type: string
                  description: Project name
                orgId:
                  type: string
                  description: Parent organization identifier
                region:
                  type: string
                  description: Project region
                password:
                  type: string
                  format: password
                  description: Database password for the project
      responses:
        '201':
          description: Project created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized access
        '500':
          description: Internal server error
      security:
        - BearerAuth: []
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: string
          description: Project identifier
        name:
          type: string
          description: Project name
        status:
          type: string
          enum:
            - active
            - inactive
            - deleted
          description: Project status
        region:
          type: string
          description: Project region
        pgVersion:
          type: integer
          description: PostgreSQL version
        createdAt:
          type: string
          format: date-time
          description: Creation time
        updatedAt:
          type: string
          format: date-time
          description: Update time
        organization:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://relytone.data.cloud/api/auth/signin
          tokenUrl: https://relytone.data.cloud/api/auth/callback
          scopes:
            read: Read permissions
            write: Write permissions
            admin: Admin permissions
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````