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

# Create a Space

> Create a new nuwacom workspace in an organization.



## OpenAPI

````yaml /openapi.yaml post /api/admin/space/create-space
openapi: 3.1.0
info:
  title: Nuwacom API
  description: API for Nuwacom application
  version: 1.0.0
servers:
  - url: https://{customer-tenant}.nuwacom.ai/
    description: Nuwacom API
security:
  - bearerAuth: []
paths:
  /api/admin/space/create-space:
    post:
      tags:
        - Workspaces
      summary: Create a Space
      description: Create a new nuwacom workspace in an organization.
      operationId: postApiAdminSpaceCreate-space
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                spaceId:
                  type: string
                  description: >-
                    A unique identifier for the space. If not provided, a random
                    ID will be generated..
                title:
                  type: string
                  description: >-
                    The human-readable space title that will appear throughout
                    the workspace (e.g., "Customer Success" or "Sales").
                organizationId:
                  type: string
                  description: >-
                    The ID of the organization the space should be created in;
                    Typically one organization for each instance and must
                    already exist in the database.
                userId:
                  type: string
                  description: >-
                    The ID of the user requesting space creation; used for
                    permission checks and ownership.
                languages:
                  type: array
                  items:
                    type: string
                  description: >-
                    A list of locale codes to be supported in the new space
                    (e.g., "en-US", "de-DE"). Right now, we support the
                    following languages: "en-US", "de-DE", "fr-FR".
              required:
                - title
                - organizationId
                - userId
                - languages
      responses:
        '200':
          description: Space was created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  spaceId:
                    type: string
                    description: The unique identifier of the newly created space.
                required:
                  - spaceId
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````