Upload Audio / Video material

This endpoint allows you to upload an audio or video file, associating it with your organization.

Parameters

  • Authorization: Bearer token (header)

  • file: Audio or video file (formData)

  • organization: Organization name (formData)

Responses

  • 201 Created: File successfully uploaded

    • Example:

      {
        "message": "File successfully uploaded",
        "file-hash": "7faa938dfb14e7ca8129a40a7e47bb02"
      }
  • 400 Bad Request: Invalid request

    • Example:

      {
        "message": "No file part in the request"
      }
  • 401 Unauthorized: Unauthorized access

    • Example:

      {
        "message": "Invalid token"
      }
  • 429 Too Many Requests: Too many requests

    • Example:

      {
        "message": "Too many requests"
      }

By utilizing this endpoint, you can easily upload audio or video files for processing and analysis, enabling you to extract valuable insights from your meetings.

Last updated