Skip to main content
PUT
/
v1
/
workflow_groups
/
{id}
Update a workflow group
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
    }
  }
}

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

workflow group updated

data
object
required