# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.meetra.ai/meetra-ai-conversation-intelligence-api-reference/upload-audio-video-material.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
