Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
workflow group found
Retrieves a specific workflow group by id
curl --request GET \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "0286d086-ea0a-49b3-86b2-2a5393275985",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Default Workflow Group",
"description": null,
"icon": "📁",
"slug": "default-workflow-group-incident",
"expanded": true,
"position": 10
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow group found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "0286d086-ea0a-49b3-86b2-2a5393275985",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Default Workflow Group",
"description": null,
"icon": "📁",
"slug": "default-workflow-group-incident",
"expanded": true,
"position": 10
}
}
}