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

# Create a decision workspace

> Create a workspace and grant yourself `workspace_admin` in it.

**Required roles**: `nx1_decisions_admin`



## OpenAPI

````yaml post /api/decisions/workspaces
openapi: 3.1.0
info:
  title: Nx1 AI API
  description: |

    AI API for Nx1 Data Platform Management and Automated Data Tasks.

    Authentication is required via PSK in Authorization header.

    Default PSK is | [ask a friend] |
  version: 0.10.2
servers: []
security: []
paths:
  /api/decisions/workspaces:
    post:
      tags:
        - Decisions
      summary: Create a decision workspace
      description: |-
        Create a workspace and grant yourself `workspace_admin` in it.

        **Required roles**: `nx1_decisions_admin`
      operationId: create_workspace_api_decisions_workspaces_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkspaceCreateRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Conflict
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - OAuth2AuthorizationCodeBearer: []
        - APIKeyHeader: []
components:
  schemas:
    WorkspaceCreateRequest:
      properties:
        id:
          type: string
          maxLength: 64
          pattern: ^[a-z0-9][a-z0-9-]{0,63}$
          title: Id
          description: >-
            Lowercase slug: letters, digits and hyphens, starting with a letter
            or digit. No slashes — use `folder` for grouping.
        name:
          type: string
          title: Name
          description: Human-readable workspace name.
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: What this workspace's rules govern.
        retain_inputs:
          type: boolean
          title: Retain Inputs
          description: >-
            Store full evaluation inputs in the audit stream. When false only a
            hash of each input is kept.
          default: false
      type: object
      required:
        - id
        - name
      title: WorkspaceCreateRequest
    WorkspaceResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        retain_inputs:
          type: boolean
          title: Retain Inputs
          default: false
        created_by:
          type: string
          title: Created By
        created_at:
          type: string
          format: date-time
          title: Created At
        archived_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Archived At
        your_roles:
          items:
            type: string
          type: array
          title: Your Roles
          description: The calling user's roles in this workspace.
      type: object
      required:
        - id
        - name
        - created_by
        - created_at
      title: WorkspaceResponse
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
          description: A brief description of the error that occurred.
        code:
          type: integer
          title: Code
          description: The HTTP status code associated with the error.
          default: 500
      type: object
      required:
        - error
      title: ErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2AuthorizationCodeBearer:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/auth
          tokenUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/token
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization-PSK

````