GET
/
v1
/
retrospective_processes
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "a2c0ce9d-9577-49b2-bbbd-15abb65329a9",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Alias modi voluptatum totam.",
      "description": "Omnis esse ipsa. Sunt accusamus laborum. Nulla maxime aut.",
      "is_default": false,
      "created_at": "2025-07-08T03:47:10.290-07:00",
      "updated_at": "2025-07-08T03:47:10.290-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "4d1f2cbb-43a0-4017-aa44-b9e4eb2d0955"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "308ea12f-22d3-43a2-a85b-7e8fb530a50e",
            "type": "retrospective_steps"
          },
          {
            "id": "4ee0c909-3f66-414d-a624-51cb8d1ca91b",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "4d1f2cbb-43a0-4017-aa44-b9e4eb2d0955",
            "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

200
application/vnd.api+json

retrospective_process found

The response is of type object.