GET
/
v1
/
retrospective_processes
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "5f5c6156-86ac-4886-8c82-24a3067138a8",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Porro esse sint ullam.",
      "description": "Ullam minus velit. In quo quia. Quasi corrupti aliquid.",
      "is_default": false,
      "created_at": "2025-07-06T14:12:31.575-07:00",
      "updated_at": "2025-07-06T14:12:31.575-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "c05bf617-4c95-4ad5-834f-7b4fd0f682c2"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "7c0bc8c2-ca5b-4495-a222-37b2c13c7bc4",
            "type": "retrospective_steps"
          },
          {
            "id": "ba27d6e2-1022-4a65-a8b1-e7263f624489",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "c05bf617-4c95-4ad5-834f-7b4fd0f682c2",
            "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.