Skip to main content
GET
/
v1
/
retrospective_processes
/
{id}
Retrieves a retrospective process
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "055d95be-09ab-4a4b-bd46-612b630545d2",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Dignissimos nihil velit iusto.",
      "description": "Beatae et occaecati. Excepturi itaque dolor. Id debitis ad.",
      "is_default": false,
      "created_at": "2025-12-03T21:32:28.710-08:00",
      "updated_at": "2025-12-03T21:32:28.710-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "7b98c2bb-b620-437a-88c9-aa6d62b3d665"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "a2408802-784d-4d1d-9fa2-784da81a9d01",
            "type": "retrospective_steps"
          },
          {
            "id": "ddb3b2d3-b718-4d53-818d-bc4d641e8765",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "7b98c2bb-b620-437a-88c9-aa6d62b3d665",
            "type": "incident_types"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: retrospective_steps,severities

Available options:
retrospective_steps,
severities,
incident_types,
groups

Response

retrospective_process found

data
object
required