GET
/
workflows
/
{workflowId}
/
logs
Get workflow logs
curl --request GET \
  --url https://v1.api.altostrat.io/workflows/{workflowId}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "fl_log_a1b2c3d4e5f6g7h8",
      "execution_id": "fl_run_a1b2c3d4e5f6g7h8",
      "node_id": "node_1",
      "status": "success",
      "output": {},
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "links": {},
  "meta": {}
}

Authorizations

Authorization
string
header
required

Enter the JWT token.

Path Parameters

workflowId
string
required

The prefixed ID of the workflow (e.g., fl_...).

Query Parameters

status
enum<string>
Available options:
success,
error
from
string<date>
to
string<date>

Response

200
application/json

A paginated list of workflow logs.

The response is of type object.