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": "f0872dcc-9a26-467a-9694-aed2c1e57060",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Non dolorem dignissimos nisi.",
      "description": "Necessitatibus eveniet ut. Excepturi dolores illo. Recusandae non quae.",
      "is_default": false,
      "created_at": "2025-12-08T06:25:05.485-08:00",
      "updated_at": "2025-12-08T06:25:05.485-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "9ab344c1-6307-4f2e-a6a9-322c909bcb4e"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "44e92b80-b44e-4d55-a9e8-0d9a6da41b10",
            "type": "retrospective_steps"
          },
          {
            "id": "20b1cc8c-e20c-4320-b80d-fd44cecf7367",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "9ab344c1-6307-4f2e-a6a9-322c909bcb4e",
            "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