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": "<string>",
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"position": 123,
"kind": "simple",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true
}
}
}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": "<string>",
"type": "workflow_groups",
"attributes": {
"name": "<string>",
"position": 123,
"kind": "simple",
"slug": "<string>",
"description": "<string>",
"icon": "<string>",
"expanded": true
}
}
}