List workflow groups
curl --request GET \
--url https://api.rootly.com/v1/workflow_groups \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"position": 123,
"kind": "simple",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true
}
}
],
"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 workflow group
workflow_groups Show child attributes
The name of the workflow group.
The position of the workflow group
The kind of the workflow group
simple, incident, post_mortem, action_item, pulse, alert The slug of the workflow group.
A description of the workflow group.
An emoji icon displayed next to the workflow group.
Whether the group is expanded or collapsed.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflow_groups \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"position": 123,
"kind": "simple",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}