GET
/
workflows
/
logs
{
  "page": 123,
  "limit": 123,
  "total": 123,
  "has_more": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workflow_run": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "version": "<string>",
        "status": "running",
        "error": "<string>",
        "elapsed_time": 123,
        "total_tokens": 123,
        "total_steps": 123,
        "created_at": 123,
        "finished_at": 123
      },
      "created_from": "<string>",
      "created_by_role": "<string>",
      "created_by_account": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_by_end_user": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "<string>",
        "is_anonymous": true,
        "session_id": "<string>"
      },
      "created_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication.

Query Parameters

keyword
string

Keyword to search.

status
enum<string>

Filter by status.

Available options:
succeeded,
failed,
stopped,
running
page
integer
default:1

Current page.

limit
integer
default:20

Number of items per page.

Response

200 - application/json

Successfully retrieved workflow logs.

The response is of type object.