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": "e9d506fb-601d-4610-be9b-e4f0e6326b43",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Velit odit in omnis.",
      "description": "Sapiente et doloribus. Enim ducimus accusantium. Non dolore laboriosam.",
      "is_default": false,
      "created_at": "2025-12-22T14:56:46.413-08:00",
      "updated_at": "2025-12-22T14:56:46.413-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "281eb582-0d61-4d15-89ef-391ccf12df42"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "72e9b36d-3a63-41cf-89d3-525a7529cb88",
            "type": "retrospective_steps"
          },
          {
            "id": "9c24a92c-098f-43bb-8e94-498540c313c1",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "281eb582-0d61-4d15-89ef-391ccf12df42",
            "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