Skip to main content
GET
/
conversations
/
workflow-logs
List Conversation Workflow Logs
curl --request GET \
  --url https://api.attention.tech/v2/conversations/workflow-logs \
  --header 'Authorization: <api-key>'
{
  "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
}

Authorizations

Authorization
string
header
required

Query Parameters

fromDateTime
string<date-time>

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

toDateTime
string<date-time>

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

conversationUUIDs
string[]

Filter logs by specific conversation UUIDs

success
boolean

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

limit
integer

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

offset
integer

Number of logs to skip for pagination

Response

Successfully retrieved workflow logs

data
object[]

List of conversation workflow logs

total
integer<int64>

Total number of logs matching the filter criteria