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": "8e8a5023-6bef-485e-8aec-3a58eb836cd0",
"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": "8e8a5023-6bef-485e-8aec-3a58eb836cd0",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Default Workflow Group",
"description": null,
"icon": "📁",
"slug": "default-workflow-group-incident",
"expanded": true,
"position": 10
}
}
}