v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Conversation

List Conversation Workflow Logs

Retrieves a paginated list of conversation workflow execution logs. Supports filtering by date range, conversation UUIDs, and success status.

get/conversations/workflow-logs

Query parameters

fromDateTimestring date-time

Start date and time for filtering logs (ISO 8601 format)

toDateTimestring date-time

End date and time for filtering logs (ISO 8601 format)

conversationUUIDsstring[]

Filter logs by specific conversation UUIDs

successboolean

Filter logs by success status (true for successful, false for failed)

limitinteger

Maximum number of logs to return (default: 100, max: 1000)

offsetinteger

Number of logs to skip for pagination

Response

Successfully retrieved workflow logs

totalinteger

Total number of logs matching the filter criteria

Example response

{
  "data": [
    {
      "conversationUUID": "conv-uuid-123",
      "workflowName": "crm_export",
      "success": true,
      "error": "",
      "createdAt": "2024-03-18T14:35:00Z"
    },
    {
      "conversationUUID": "conv-uuid-123",
      "workflowName": "scorecard_calculation",
      "success": false,
      "error": "Scorecard template not found",
      "createdAt": "2024-03-18T14:40:00Z"
    }
  ],
  "total": 2
}