LawVu MatterFiles API

The MatterFiles API from LawVu — 1 operation(s) for matterfiles.

Operations 1

POST /v1/matters/{matterId}/files Upload file #

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-matterfiles-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

lawvu-matterfiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LawVu Matters Matter Files API
  description: Apis for matter resources
  version: '1.0'
servers:
- url: https://api-sandbox.lawvu.com/matter-apis
  description: Sandbox API
- url: https://api.lawvu.com/matter-apis
  description: Production API
tags:
- name: MatterFiles
paths:
  /v1/matters/{matterId}/files:
    post:
      tags:
      - MatterFiles
      summary: Upload file
      description: 'Add or update a file in a matter. \

        \

        The body of the request must be content-type ''multipart/form-data'' and contain the file data.'
      operationId: post-v1-matters-matterid-files
      parameters:
      - name: matterId
        in: path
        description: The id of the matter
        required: true
        schema:
          type: integer
          format: int32
      - name: comments
        in: query
        description: Comments to be added to the file
        schema:
          type: string
      - name: parentFileId
        in: query
        description: Creates a new version for the specified parent file id
        schema:
          type: integer
          format: int32
      - name: folderId
        in: query
        description: The id of the folder to upload the file within
        schema:
          type: integer
          format: int32
      - name: conflictResolution
        in: query
        description: Defines behaviour for when a file conflict is found<p>Options:</p><ul><li>Replace</li><li>KeepBoth</li><li>SaveVersion</li><li>Skip</li></ul>
        schema:
          enum:
          - Replace
          - KeepBoth
          - SaveVersion
          - Skip
          type: string
          description: <p>Options:</p><ul><li>Replace</li><li>KeepBoth</li><li>SaveVersion</li><li>Skip</li></ul>
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
            encoding:
              file:
                style: form
      responses:
        '201':
          description: The id of the created file
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '204':
          description: When the file was skipped due to conflict resolution setting