Skip to main content
GET
/
v1
/
workflow_groups
/
{id}
Retrieves a workflow group
curl --request GET \
  --url https://api.rootly.com/v1/workflow_groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "name": "<string>",
      "position": 123,
      "slug": "<string>",
      "description": "<string>",
      "icon": "<string>",
      "expanded": true
    }
  },
  "included": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {},
      "relationships": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

workflow group found

data
object
required
included
object[]