Creates a new workflow group from provided data
curl --request POST \
--url https://api.rootly.com/v1/workflow_groups \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"kind": "simple",
"description": "<string>",
"icon": "<string>",
"expanded": true,
"position": 123
}
}
}
'{
"data": {
"id": "ab9b27a9-b15c-473b-b2dc-168cb00bb062",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Test",
"description": null,
"icon": "📁",
"slug": "test-incident",
"expanded": true,
"position": 1
}
}
}Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/workflow_groups \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"kind": "simple",
"description": "<string>",
"icon": "<string>",
"expanded": true,
"position": 123
}
}
}
'{
"data": {
"id": "ab9b27a9-b15c-473b-b2dc-168cb00bb062",
"type": "workflow_groups",
"attributes": {
"kind": "incident",
"name": "Test",
"description": null,
"icon": "📁",
"slug": "test-incident",
"expanded": true,
"position": 1
}
}
}