Update a specific workflow group by id
curl --request PUT \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_groups",
"attributes": {
"kind": "simple",
"name": "<string>",
"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
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
workflow_groups Show child attributes
The kind of the workflow group
simple, incident, post_mortem, action_item, pulse, alert The name of the workflow group.
A description of the workflow group.
An emoji icon displayed next to the workflow group.
Whether the group is expanded or collapsed.
The position of the workflow group
workflow group updated
Show child attributes
Unique ID of the workflow group
workflow_groups Show child attributes
The name of the workflow group.
The position of the workflow group
The kind of the workflow group
simple, incident, post_mortem, action_item, pulse, alert The slug of the workflow group.
A description of the workflow group.
An emoji icon displayed next to the workflow group.
Whether the group is expanded or collapsed.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/workflow_groups/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_groups",
"attributes": {
"kind": "simple",
"name": "<string>",
"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
}
}
}