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": "7aa6830f-fda9-4c01-a3bd-ca8d4ce0bb69",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Dignissimos nam illo enim.",
      "description": "Harum vel quia. Voluptas placeat amet. Sit laborum odio.",
      "is_default": false,
      "created_at": "2025-12-23T23:20:44.871-08:00",
      "updated_at": "2025-12-23T23:20:44.871-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "0074f90b-3a2f-4346-b372-80bf6b70fc36"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "cc444870-de45-483e-b400-ab030e495935",
            "type": "retrospective_steps"
          },
          {
            "id": "855e3a7d-2356-4f11-8f65-1a5b35492cac",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "0074f90b-3a2f-4346-b372-80bf6b70fc36",
            "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