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": "46425d2e-b10e-4476-bc52-b318aa6b2ad6",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Consequatur animi dolor possimus.",
      "description": "Ipsa rem reiciendis. Ratione dolor sit. Eaque natus iusto.",
      "is_default": false,
      "created_at": "2025-12-11T07:32:36.488-08:00",
      "updated_at": "2025-12-11T07:32:36.488-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "4c198a6c-20da-42f4-bc66-deb3842bc55e"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "39530031-491a-4fa6-a065-93f87c565288",
            "type": "retrospective_steps"
          },
          {
            "id": "0f9bc715-a162-4566-bf6f-845554f0782c",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "4c198a6c-20da-42f4-bc66-deb3842bc55e",
            "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