GET
/
v1
/
workflows
/
{workflow_id}
/
workflow_tasks
curl --request GET \
  --url 'https://api.rootly.com/v1/workflows/%7Bworkflow_id%7D/workflow_tasks?include=SOME_STRING_VALUE&page%5Bnumber%5D=SOME_INTEGER_VALUE&page%5Bsize%5D=SOME_INTEGER_VALUE&filter%5Bsearch%5D=SOME_STRING_VALUE&filter%5Bname%5D=SOME_STRING_VALUE&filter%5Bslug%5D=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "data": [
    {
      "id": "<string>",
      "type": "workflow_tasks",
      "attributes": {
        "workflow_id": "<string>",
        "task_params": {
          "task_type": "add_action_item",
          "attribute_to_query_by": "jira_issue_id",
          "query_value": "<string>",
          "incident_role_id": "<string>",
          "assigned_to_user_id": "<string>",
          "assigned_to_user": {
            "id": "<string>",
            "name": "<string>"
          },
          "priority": "high",
          "kind": "<string>",
          "summary": "<string>",
          "description": "<string>",
          "status": "open",
          "post_to_incident_timeline": true,
          "custom_fields_mapping": "<string>",
          "post_to_slack_channels": [
            {
              "id": "<string>",
              "name": "<string>"
            }
          ]
        },
        "name": "<string>",
        "position": 123,
        "skip_on_failure": true,
        "enabled": true,
        "created_at": "<string>",
        "updated_at": "<string>"
      }
    }
  ],
  "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
string
page[number]
integer
page[size]
integer
filter[name]
string
filter[slug]
string

Response

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