PUT
/
v1
/
workflow_groups
/
{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": "be8f2bb9-2b3b-4f1b-a661-d7358efa2981",
    "type": "workflow_groups",
    "attributes": {
      "kind": "incident",
      "name": "Test update",
      "description": null,
      "icon": "📁",
      "slug": "default-incident",
      "expanded": true,
      "position": 1
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

200
application/vnd.api+json
workflow group updated
data
object
required