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

# Create project

> Creates a new project within the workspace.



## OpenAPI

````yaml https://api.neurapulse.com/openapi/v1.json post /projects
openapi: 3.1.1
info:
  title: api-service | v1
  version: 1.0.0
servers:
  - url: https://api.neurapulse.com
security:
  - ApiKey: []
tags:
  - name: Project Results
  - name: Projects
  - name: Test Takers
  - name: Workspace
paths:
  /projects:
    post:
      tags:
        - Projects
      summary: Create project
      description: Creates a new project within the workspace.
      operationId: CreateProject
      requestBody:
        description: Project data to create.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectCreate'
          text/json:
            schema:
              $ref: '#/components/schemas/ProjectCreate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ProjectCreate'
        required: true
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Project'
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
            text/json:
              schema:
                $ref: '#/components/schemas/Project'
        '201':
          description: Created
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ProjectCreate:
      required:
        - name
        - fitForDutyResponse
      type: object
      properties:
        name:
          maxLength: 50
          type: string
          description: The name of the project.
        fitForDutyResponse:
          maxLength: 1000
          type: string
          description: >-
            Define actions for high-risk results. For example, you can write
            'Interview the test taker', or enter a URL.
    Project:
      required:
        - name
        - fitForDutyResponse
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the project.
          format: uuid
        dateCreated:
          type: string
          description: The date the project was created.
          format: date-time
        lastModified:
          type: string
          description: The date the project was last modified.
          format: date-time
        state:
          $ref: '#/components/schemas/ActiveStateType'
          description: The state of the project.
        name:
          maxLength: 50
          type: string
          description: The name of the project.
        fitForDutyResponse:
          maxLength: 1000
          type: string
          description: >-
            Define actions for high-risk results. For example, you can write
            'Interview the test taker', or enter a URL.
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
          description: >-
            A URI reference identifying the problem type (RFC 7807). Null when
            no specific type is assigned.
        title:
          type:
            - 'null'
            - string
          description: A short, human-readable summary of the problem type.
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: >-
            The HTTP status code for this problem, duplicated in the body for
            convenience.
          format: int32
        detail:
          type:
            - 'null'
            - string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
        instance:
          type:
            - 'null'
            - string
          description: >-
            A URI reference identifying the specific occurrence of the problem
            (typically the request path).
    ActiveStateType:
      enum:
        - Draft
        - Active
        - Inactive
        - Deleted
        - ActiveExpired
      type: string
      example: Draft
  securitySchemes:
    ApiKey:
      type: apiKey
      description: API key generated in the Portal (Workspace Settings → API Keys).
      name: x-api-key
      in: header

````