GET
/
v1
/
workflows
/
{workflow_id}
/
workflow_runs
curl --request GET \
  --url https://api.rootly.com/v1/workflows/{workflow_id}/workflow_runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "workflow_runs",
      "attributes": {
        "workflow_id": "<string>",
        "status": "queued",
        "status_message": "<string>",
        "triggered_by": "system",
        "started_at": "<string>",
        "completed_at": "<string>",
        "failed_at": "<string>",
        "canceled_at": "<string>",
        "incident_id": "<string>",
        "post_mortem_id": "<string>",
        "action_item_id": "<string>",
        "alert_id": "<string>",
        "pulse_id": "<string>",
        "context": {}
      }
    }
  ],
  "links": {
    "self": "<string>",
    "first": "<string>",
    "prev": "<string>",
    "next": "<string>",
    "last": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: genius_task_runs

Available options:
genius_task_runs
page[number]
integer
page[size]
integer
filter[created_at][gt]
string
filter[created_at][gte]
string
filter[created_at][lt]
string
filter[created_at][lte]
string

Response

200 - application/vnd.api+json
success
data
object[]
required