# Ringing

## Create a ringing call

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

Create a ringing call.&#x20;

#### Request Body

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

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

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

{% endtab %}
{% endtabs %}

**Body (raw)**

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