# Upload Audio / Video material

#### Parameters

* **Authorization**: Bearer token *(header)*
* **file**: Audio or video file *(formData)*
* **organization**: Organization name *(formData)*

#### Responses

* **201 Created**: File successfully uploaded
  * Example:

    ```json
    {
      "message": "File successfully uploaded",
      "file-hash": "7faa938dfb14e7ca8129a40a7e47bb02"
    }
    ```
* **400 Bad Request**: Invalid request
  * Example:

    ```json
    {
      "message": "No file part in the request"
    }
    ```
* **401 Unauthorized**: Unauthorized access
  * Example:

    ```json
    {
      "message": "Invalid token"
    }
    ```
* **429 Too Many Requests**: Too many requests
  * Example:

    ```json
    {
      "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.
