List workflow tasks
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/workflow_tasks \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "<string>",
"task_params": "<any>",
"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>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/workflow_tasks \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "<string>",
"task_params": "<any>",
"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>"
}
}