TruVideo Files API

The Files API from TruVideo — 4 operation(s) for files.

Operations 5

POST /files Upload file binary #
GET /files/metadata/{uuid} Get file metadata #
GET /files/entity/{entityType}/{entityID} Get files by entity #
POST /files/entity/{entityType}/{entityID} Assign files to an entity #
GET /files/{url} Get file binary #

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/truvideo-files-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

truvideo-files-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TruVideo Platform Authentication Files API
  version: v2
  description: 'REST API for the TruVideo omnichannel video-and-messaging platform for service businesses (built for the automotive service market: dealers, service advisors, technicians, repair orders and customers). Covers authentication, users, dealers, repair orders, videos, messaging conversations, customers, files, in-app chat, reporting and support. Faithfully reconstructed from TruVideo''s published API documentation (github.com/Truvideo/Documentation); TruVideo does not publish a machine readable OpenAPI definition of its own.'
  contact:
    name: TruVideo Developer Team
    email: devmgr+git@truvideo.com
    url: https://truvideo.com/software-partnerships/
  x-generated-by: api-evangelist-enrichment
  x-source: https://github.com/Truvideo/Documentation
servers:
- url: https://app.truvideo.com
  description: Production
- url: https://dev.truvideo.com
  description: Sandbox / test (requires a TruVideo Sandbox account; may be gated)
security:
- bearerAuth: []
tags:
- name: Files
paths:
  /files:
    post:
      tags:
      - Files
      operationId: uploadFile
      summary: Upload file binary
      description: Uploads a file as a multipart request and returns its metadata.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
      responses:
        '200':
          description: File metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileMetadata'
  /files/metadata/{uuid}:
    get:
      tags:
      - Files
      operationId: getFileMetadata
      summary: Get file metadata
      parameters:
      - name: uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: File metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileMetadata'
  /files/entity/{entityType}/{entityID}:
    get:
      tags:
      - Files
      operationId: getFilesByEntity
      summary: Get files by entity
      parameters:
      - name: entityType
        in: path
        required: true
        schema:
          type: string
      - name: entityID
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Files associated with the entity
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EntityFile'
    post:
      tags:
      - Files
      operationId: assignFilesToEntity
      summary: Assign files to an entity
      parameters:
      - name: entityType
        in: path
        required: true
        schema:
          type: string
      - name: entityID
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                properties:
                  uuid:
                    type: string
                    format: uuid
                  properties:
                    type: object
                    additionalProperties: true
      responses:
        '200':
          description: Files associated
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EntityFile'
  /files/{url}:
    get:
      tags:
      - Files
      operationId: getFileBinary
      summary: Get file binary
      parameters:
      - name: url
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Binary content
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
components:
  schemas:
    FileMetadata:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        url:
          type: string
          format: uri
        name:
          type: string
        size:
          type: integer
        contentType:
          type: string
    EntityFile:
      type: object
      properties:
        metadata:
          $ref: '#/components/schemas/FileMetadata'
        position:
          type: integer
        properties:
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT bearer token obtained from POST /api/v2/authentication/login.