> ## Documentation Index
> Fetch the complete documentation index at: https://doc.omnitechsolucoes.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Realizar uma chamada telefônica

> Dispara uma chamada telefônica ativa via API usando um assistente de IA da OmniTech, com variáveis personalizadas para o lead e número de destino.

Este endpoint permite realizar uma chamada telefônica.

### Corpo da Requisição

<ParamField body="phone_number" type="string" required>
  Número de telefone do cliente no formato E.164 (ex.: +1234567890)
</ParamField>

<ParamField body="assistant_id" type="integer" required>
  ID do assistente que realizará a chamada
</ParamField>

<ParamField body="variables" type="object">
  Variáveis a serem repassadas para o lead

  <Expandable title="propriedades de variables">
    <ParamField body="customer_name" type="string" default="<string>">
      Nome do cliente
    </ParamField>

    <ParamField body="email" type="string" default="<string>">
      E-mail do cliente
    </ParamField>
  </Expandable>
</ParamField>

### Resposta

<ResponseField name="message" type="string" default="Call initiated successfully">
  Mensagem da resposta
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "message": "Chamada iniciada com sucesso",
    "data": {}
  }
  ```
</ResponseExample>
