# Answered

## Create an answered call&#x20;

<mark style="color:green;">`POST`</mark> `https://{{account_id}}.acquire.io/api/v1/voip/call-answered`

Create an answered call.

#### Request Body

| Name                                        | Type   | Description                                         |
| ------------------------------------------- | ------ | --------------------------------------------------- |
| Direction<mark style="color:red;">\*</mark> | string | The direction of the call. 'outgoing' \| 'incoming' |
| From<mark style="color:red;">\*</mark>      | string | Phone number of the caller                          |
| To<mark style="color:red;">\*</mark>        | string | Phone number of the callee                          |
| CallId<mark style="color:red;">\*</mark>    | string | ID of the call                                      |
| email<mark style="color:red;">\*</mark>     | string | Email of the callee                                 |

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

```
{
  "data": {
    "success": true,
    "message": "Successfully saved"
  }
}
```

{% endtab %}
{% endtabs %}

**Body (raw)**

```
{
  "From": "+1234567890",
  "To": "+1789451230",
  "CallId": "CA12345678904567890",
  "email": "user@example.com",
  "Direction": "incoming"
}
```
