Pular para o conteúdo principal
GET
/
api
/
v1
/
phone-numbers
/
release-requests
curl "https://app.talkover.ai/api/v1/phone-numbers/release-requests" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": [
    {
      "id": "request-uuid-1",
      "phone_number_id": "phone-uuid-1",
      "phone_number": "+15551234567",
      "reason": "Number is no longer in use after migration",
      "status": "pending",
      "requested_at": "2024-01-10T14:30:00Z"
    },
    {
      "id": "request-uuid-2",
      "phone_number_id": "phone-uuid-2",
      "phone_number": "+15559876543",
      "reason": "Replaced by new toll-free number",
      "status": "approved",
      "requested_at": "2024-01-05T10:00:00Z",
      "resolved_at": "2024-01-08T16:20:00Z"
    }
  ]
}

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.

Listar Solicitações de Liberação

Lista as solicitações de liberação enviadas para números de telefone em seu ambiente. Solicitações de liberação são usadas para devolver um número de telefone que você não precisa mais.

Endpoint

GET /api/v1/phone-numbers/release-requests

Cabeçalhos da Requisição

Authorization
string
obrigatório
Token Bearer. Formato: Bearer talq_your_environment_token_here

Exemplos

curl "https://app.talkover.ai/api/v1/phone-numbers/release-requests" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Resposta

{
  "success": true,
  "data": [
    {
      "id": "request-uuid-1",
      "phone_number_id": "phone-uuid-1",
      "phone_number": "+15551234567",
      "reason": "Number is no longer in use after migration",
      "status": "pending",
      "requested_at": "2024-01-10T14:30:00Z"
    },
    {
      "id": "request-uuid-2",
      "phone_number_id": "phone-uuid-2",
      "phone_number": "+15559876543",
      "reason": "Replaced by new toll-free number",
      "status": "approved",
      "requested_at": "2024-01-05T10:00:00Z",
      "resolved_at": "2024-01-08T16:20:00Z"
    }
  ]
}

Valores de Status

  • pending — enviada, aguardando análise
  • approved — aprovada e o número foi (ou será) liberado
  • rejected — solicitação negada (motivo retornado no campo rejection_reason)
  • cancelled — usuário cancelou antes da resolução

Observações