LawVu Folders API

The Folders API from LawVu — 2 operation(s) for folders.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lawvu-folders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lawvu-folders-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: LawVu Account Auth Folders API
  description: Apis for account related resources (authentication, profiles, organisation details etc)
  version: '1.0'
servers:
- url: https://api-sandbox.lawvu.com/account-apis
  description: Sandbox API
- url: https://api.lawvu.com/account-apis
  description: Production API
tags:
- name: Folders
paths:
  /v1/folders:
    get:
      tags:
      - Folders
      summary: Get folders
      description: Gets a list of folders in LawVu
      operationId: get-v1-folders
      parameters:
      - name: recordId
        in: query
        description: The record ID the folders are linked to
        required: true
        schema:
          type: integer
          format: int32
      - name: recordType
        in: query
        description: The record type the folders are linked to (Matter, Contract, Organisation etc)<p>Options:</p><ul><li>Matter</li><li>Milestone</li><li>Task</li><li>Organisation</li><li>Contract</li><li>File</li><li>InvoiceBatch</li><li>KnowledgeArticle</li><li>Folder</li><li>FolderTemplate</li><li>KnowledgeLibrary</li><li>InboundEmail</li><li>User</li><li>MessageThread</li><li>TimelineEntry</li><li>MatterStatus</li><li>ContractStatus</li><li>Message</li><li>Comment</li></ul>
        required: true
        schema:
          enum:
          - Matter
          - Milestone
          - Task
          - Organisation
          - Contract
          - File
          - InvoiceBatch
          - KnowledgeArticle
          - Folder
          - FolderTemplate
          - KnowledgeLibrary
          - InboundEmail
          - User
          - MessageThread
          - TimelineEntry
          - MatterStatus
          - ContractStatus
          - Message
          - Comment
          type: string
          description: <p>Options:</p><ul><li>Matter</li><li>Milestone</li><li>Task</li><li>Organisation</li><li>Contract</li><li>File</li><li>InvoiceBatch</li><li>KnowledgeArticle</li><li>Folder</li><li>FolderTemplate</li><li>KnowledgeLibrary</li><li>InboundEmail</li><li>User</li><li>MessageThread</li><li>TimelineEntry</li><li>MatterStatus</li><li>ContractStatus</li><li>Message</li><li>Comment</li></ul>
      - name: parentFolderId
        in: query
        description: Returns folders under the specified parentd folder ID otherwise it returns them from the root folder
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FolderModelArray'
              example:
              - id: 1
                name: Folder 1 test
              - id: 2
                name: Folder 2 test
            application/json:
              schema:
                $ref: '#/components/schemas/FolderModelArray'
              example:
              - id: 1
                name: Folder 1 test
              - id: 2
                name: Folder 2 test
            text/json:
              schema:
                $ref: '#/components/schemas/FolderModelArray'
              example:
              - id: 1
                name: Folder 1 test
              - id: 2
                name: Folder 2 test
  /v1/folders/{targetType}/{targetId}:
    post:
      tags:
      - Folders
      summary: Create folder
      description: Creates a folder within a entity, optionally as a subfolder
      operationId: post-v1-folders-targettype-targetid
      parameters:
      - name: targetType
        in: path
        description: The target type the folder should be created in<p>Options:</p><ul><li>Matter</li><li>Contract</li></ul>
        required: true
        schema:
          enum:
          - Matter
          - Contract
          type: string
          description: <p>Options:</p><ul><li>Matter</li><li>Contract</li></ul>
      - name: targetId
        in: path
        description: The target entity in LawVu
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        description: Details of the folder to create
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/CreateFolderRequest'
            example:
              name: New Folder
              parentFolderId: 4375767
          application/json:
            schema:
              $ref: '#/components/schemas/CreateFolderRequest'
            example:
              name: New Folder
              parentFolderId: 4375767
          text/json:
            schema:
              $ref: '#/components/schemas/CreateFolderRequest'
            example:
              name: New Folder
              parentFolderId: 4375767
          application/*+json:
            schema:
              $ref: '#/components/schemas/CreateFolderRequest'
            example:
              name: New Folder
              parentFolderId: 4375767
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
components:
  schemas:
    CreateFolderRequest:
      required:
      - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
          description: Name of the folder to create
        parentFolderId:
          type: integer
          description: The parent folder ID the folder will be created within, otherwise the folder is created at the root of the record.
          format: int32
          nullable: true
      additionalProperties: false
    FolderModel:
      type: object
      properties:
        id:
          type: integer
          description: Folder ID
          format: int32
        name:
          type: string
          description: Folder Name
          nullable: true
      additionalProperties: false
    FolderModelArray:
      type: array
      items:
        $ref: '#/components/schemas/FolderModel'