v1

latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KB

List Call Logs

Retrieves a list of call logs for a specific job.

get/v1/agent-analytics/logs

Query parameters

jobIdstring uuid required
Example:48f7656f-098b-4c43-b165-7cfd2cc8ac30

The unique identifier of the job.

Response

Successful response

successboolean

Example response

{
  "success": true,
  "data": [
    {
      "id": "8b4c8c7d-8b4c-4c7d-8b4c-4c7d8b4c7d8b",
      "type": "ERROR",
      "category": "call",
      "nodeId": "node_id",
      "message": "Error message",
      "payload": {},
      "timestamp": "2023-07-01T00:00:00.000Z",
      "jobId": "8b4c8c7d-8b4c-4c7d-8b4c-4c7d8b4c7d8b",
      "createdAt": "2023-07-01T00:00:00.000Z",
      "updatedAt": "2023-07-01"
    }
  ]
}