Skip to main content

Retrieve all execution logs for a workflow

GET 

/workflows/:workflowId/logs

Retrieves log data for a given workflow over time. Logs are stored for a maximum of 60 days before being purged.

Each log includes the executionId (which can be used to rerun an execution), the startedAt and stoppedAt date stamps, and the JSON output of the execution.

Request

Path Parameters

    workflowId stringrequired

    The Id of the workflow you want to find logs for

Query Parameters

    userId string

    The Id of the user you want delete logs for. Returned from the Create User endpoint

    page int32

    page of results

    limit int32

    Number of results per page (max 30, default 10)

    order string

    asc or desc for ascending/descending (default desc)

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Responses

200

Schema

    any

Loading...