# API Call - Manual Upload

## Upload a call to be Reviewed Manually

<mark style="color:green;">`POST`</mark> `/v2/call/upload`

Multipart Form Data]\
File must be in `mp4` format.\
Maximum file size is 10MB.

**Headers**

| Name         | Value                 |
| ------------ | --------------------- |
| Content-Type | `multipart/form-data` |

**Body**

| Name      | Type       | Required | Description                                                                                                 |
| --------- | ---------- | -------- | ----------------------------------------------------------------------------------------------------------- |
| `api_key` | String     | Yes      |                                                                                                             |
| `file`    | File (mp4) | Yes      | <p>The file to be uploaded (multipart form data).<br><br>File Name Example: <br>"Inbound - JohnDoe.mp4"</p> |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "reply": true
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
