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": "24d2ac91-0021-4d2c-9b3a-beda23eff38f",
    "type": "retrospective_processes",
    "attributes": {
      "name": "In ut impedit suscipit.",
      "description": "Eveniet inventore totam. Dignissimos expedita eius. Error consequatur illum.",
      "is_default": false,
      "created_at": "2025-12-19T07:45:14.879-08:00",
      "updated_at": "2025-12-19T07:45:14.879-08:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "3c62a5e9-41d7-4272-95c6-163f30400227"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "59858e12-ffca-4de7-8669-24bd38ccb011",
            "type": "retrospective_steps"
          },
          {
            "id": "0f5598d8-e0f2-4ce6-bee7-2c0c9f45ea34",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "3c62a5e9-41d7-4272-95c6-163f30400227",
            "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