# Call in queue

## Create a call in queue

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

Create a call in the queue.

#### Request Body

| Name                                     | Type   | Description                |
| ---------------------------------------- | ------ | -------------------------- |
| CallId<mark style="color:red;">\*</mark> | string | ID of the call             |
| To<mark style="color:red;">\*</mark>     | string | Callee phone number 'To'   |
| From<mark style="color:red;">\*</mark>   | string | Caller phone number 'From' |

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

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

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "From": "+1234567890",
  "To": "+1789451230",
  "CallId": "CA12345678904567890"
}
```
