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": "d7cb7d49-d777-4e7c-94ed-444ca9ac2867",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Soluta culpa repellat ab.",
      "description": "Facilis quia dolore. Omnis aliquid ullam. Repellendus eius consectetur.",
      "is_default": false,
      "created_at": "2026-02-10T06:24:33.432-08:00",
      "updated_at": "2026-02-10T06:24:33.432-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "01f28a44-46c0-4500-8333-77bdefc0a5b1"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "5b8378ef-72e8-4e3a-8751-69469f43fb05",
            "type": "retrospective_steps"
          },
          {
            "id": "b5eb8324-cd80-43d5-8442-107c433ac3ab",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "01f28a44-46c0-4500-8333-77bdefc0a5b1",
            "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