---
title: "List Conversation Workflow Logs"
method: GET
path: "/conversations/workflow-logs"
tags: ["Conversation"]
---

# List Conversation Workflow Logs

`GET /conversations/workflow-logs`

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

## Query parameters

- `fromDateTime` string, date-time
- `toDateTime` string, date-time
- `conversationUUIDs` string[]
- `success` boolean
- `limit` integer
- `offset` integer

## Response `200`

Successfully retrieved workflow logs

- ConversationWorkflowLogsResponse
  - `data` ConversationWorkflowLog[] — List of conversation workflow logs
    - `conversationUUID` string — UUID of the conversation
    - `createdAt` string, date-time — Timestamp when the workflow was executed
    - `workflowName` string — Name of the workflow that was executed
    - `success` boolean — Whether the workflow execution was successful
    - `error` string — Error message if the workflow execution failed
  - `total` integer — Total number of logs matching the filter criteria

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed - valid API key required
- `default` — Unexpected error occurred while processing the request

---

[API](https://skmtc.net/attention/apis/attention-service-v2.md) · [All operations](https://skmtc.net/attention/apis/attention-service-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/attention/attention-service-v2/revisions/5de55d3804cf/schema)
