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": {
"kind": "simple",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true,
"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
The response is of type object
.
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": {
"kind": "simple",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true,
"position": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}