> ## Documentation Index
> Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Atualizar Configurações de Chamada do Agente

> Atualizar a direção de chamada e os números de telefone atribuídos a um agente

# Atualizar Configurações de Chamada do Agente

Atualiza a direção da chamada (entrada/saída) e os números de telefone atribuídos ao agente.

## Endpoint

```
PUT /api/v1/agents/{agent_id}/calling
```

## Parâmetros de caminho

<ParamField path="agent_id" type="string" required>
  O identificador único do agente de voz a ser atualizado.
</ParamField>

## Cabeçalhos da requisição

<ParamField header="Authorization" type="string" required>
  Token Bearer para autenticação. Formato: `Bearer talq_your_environment_token_here`
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Deve ser definido como `application/json`
</ParamField>

## Parâmetros do Corpo da requisição

<ParamField body="direction" type="string" required>
  Direção da chamada. Opções: `inbound`, `outbound`.
</ParamField>

<ParamField body="phone_number_ids" type="array">
  Array de UUIDs de números de telefone a atribuir ao agente.
</ParamField>

## Exemplos

<RequestExample>
  ```bash theme={null}
  # Outbound with multiple phone numbers
  curl -X PUT "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/calling" \
    -H "Authorization: Bearer talq_your_environment_token_here" \
    -H "Content-Type: application/json" \
    -d '{
      "direction": "outbound",
      "phone_number_ids": ["phone-uuid-1", "phone-uuid-2"]
    }'
  ```

  ```javascript theme={null}
  const response = await fetch('https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/calling', {
    method: 'PUT',
    headers: {
      'Authorization': 'Bearer talq_your_environment_token_here',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      direction: "outbound",
      phone_number_ids: ["phone-uuid-1", "phone-uuid-2"]
    })
  });

  const result = await response.json();
  ```

  ```python theme={null}
  import requests

  url = "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/calling"
  headers = {
      "Authorization": "Bearer talq_your_environment_token_here",
      "Content-Type": "application/json"
  }
  data = {
      "direction": "outbound",
      "phone_number_ids": ["phone-uuid-1", "phone-uuid-2"]
  }

  response = requests.put(url, headers=headers, json=data)
  result = response.json()
  ```
</RequestExample>

## Resposta

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Agent calling settings updated successfully",
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "SupportBot",
      "direction": "outbound",
      "current_status": "draft",
      "phone_numbers": [
        {
          "id": "phone-uuid-1",
          "number": "+5511987654321",
          "country_code": "US",
          "formatted_number": "(123) 456-7890",
          "current_status": "active"
        },
        {
          "id": "phone-uuid-2",
          "number": "+5511976543210",
          "country_code": "US",
          "formatted_number": "(987) 654-3210",
          "current_status": "active"
        }
      ],
      "updated_at": "2024-01-15T10:45:00Z"
    }
  }
  ```
</ResponseExample>

## Observações

* Definir `direction: "inbound"` configura o agente para receber chamadas nos números atribuídos.
* Definir `direction: "outbound"` configura o agente para realizar chamadas a partir dos números atribuídos.
* Os números de telefone já devem existir em seu ambiente. Use o endpoint [Listar Números de Telefone](/api-reference/endpoints/list-phone-numbers) para recuperar os IDs disponíveis.
