Delete a specific workflow group by id
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "2a265289-230d-48c2-8b17-aca5e6c970b8",
"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 deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "2a265289-230d-48c2-8b17-aca5e6c970b8",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Default Workflow Group",
"description": null,
"icon": "📁",
"slug": "default-workflow-group-incident",
"expanded": true,
"position": 10
}
}
}