← Volver al listado
GET/api/v1/calls/{id}/summary

Obtener Resumen de Llamada

Devuelve un resumen para un ID de llamada dado.

Autenticación

Envía tu API key en el header x-api-key header.

x-api-keybearer

Parámetros

idobligatorio

path · string

ID de llamada del cual obtener el resumen.

Respuestas

200

PublicApiGetCallSummaryResponseDto

statusCoderequired

number

countrequired

number

errorrequired

string

datarequired

PublicApiCallSummaryResponseDto

Ejemplo de respuesta

json
{
  "statusCode": 200,
  "count": 0,
  "error": null,
  "data": {
    "callId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "summary": "The call was productive, and we finalized the project timeline.",
    "nextSteps": [
      {
        "action": "Send follow-up email",
        "actors": [
          "John Doe",
          "Team Leads"
        ],
        "deadline": "2024-07-20"
      }
    ],
    "aiOpinion": "Positive sentiment detected overall.",
    "insights": {
      "intro": "Introduction to the project",
      "questions": [
        {
          "question": "What is the timeline?",
          "answer": "We aim to complete in 3 months"
        }
      ],
      "objections": {
        "summary": "Some concerns about pricing",
        "objections": [
          {
            "objection": "Price is too high",
            "answer": "We can offer a discount"
          }
        ]
      },
      "closing": {
        "summary": "Agreed to follow up next week",
        "closing": [
          {
            "statement": "Let's schedule a follow-up",
            "doneBy": "John Doe"
          }
        ]
      }
    }
  }
}
401No autorizado - clave API o token Bearer faltante o inválido