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

# Create Folder

Create a new folder to organize your studies.


## OpenAPI

````yaml POST /api/v1/folders
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.getversive.com
security: []
paths:
  /api/v1/folders:
    post:
      tags:
        - Folders
      summary: Create Folder
      operationId: create_folder_api_v1_folders_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateFolderReqV1'
            example:
              name: My New Folder
              access_policy: FULL_ACCESS
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema: {}
              example:
                id: folder_123
                name: My Folder
                created_at: '2024-01-01T00:00:00Z'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
              example:
                detail:
                  - loc:
                      - body
                      - title
                    msg: field required
                    type: value_error.missing
      security:
        - HTTPBearer: []
components:
  schemas:
    CreateFolderReqV1:
      properties:
        name:
          type: string
          title: Name
        access_policy:
          anyOf:
            - type: string
              enum:
                - FULL_ACCESS
                - CAN_EDIT
                - CAN_VIEW
                - INVITE_ONLY
                - CAN_EDIT_SURVEY_ONLY
            - type: 'null'
          title: Access Policy
          default: FULL_ACCESS
      type: object
      required:
        - name
      title: CreateFolderReqV1
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````