Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
workflow group deleted
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": "48264c1c-3599-466b-bfa5-89a10667c238",
    "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
Show child attributes
Was this page helpful?
curl --request DELETE \
  --url https://api.rootly.com/v1/workflow_groups/{id} \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "48264c1c-3599-466b-bfa5-89a10667c238",
    "type": "workflow_groups",
    "attributes": {
      "kind": "incident",
      "name": "Default Workflow Group",
      "description": null,
      "icon": "📁",
      "slug": "default-workflow-group-incident",
      "expanded": true,
      "position": 10
    }
  }
}