List playbook tasks
curl --request GET \
--url https://api.rootly.com/v1/playbooks/{playbook_id}/playbook_tasks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "playbook_tasks",
"attributes": {
"task": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"playbook_id": "<string>",
"description": "<string>",
"position": 123
}
}
],
"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
Show child attributes
Unique ID of the task
playbook_tasks Show child attributes
The task of the task
Date of creation
Date of last update
The description of task
The position of the task
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/playbooks/{playbook_id}/playbook_tasks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "playbook_tasks",
"attributes": {
"task": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"playbook_id": "<string>",
"description": "<string>",
"position": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}