GET
/
v1
/
retrospective_processes
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_processes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2720dfe4-bb1b-4976-895f-54ba241911d5",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Et non sit eveniet.",
      "description": "Molestias sint fugit. Qui saepe provident. Repudiandae nemo officiis.",
      "is_default": false,
      "created_at": "2025-06-19T02:43:15.022-07:00",
      "updated_at": "2025-06-19T02:43:15.022-07:00",
      "retrospective_process_matching_criteria": {
        "incident_type_ids": [
          "a4e878c9-ef54-43fb-8eaf-e89cc2f3d5b5"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "6070d472-1d72-4569-965b-5f03dea5f27c",
            "type": "retrospective_steps"
          },
          {
            "id": "5d6b69df-08d9-4165-89f3-61998599d197",
            "type": "retrospective_steps"
          }
        ]
      },
      "incident_types": {
        "data": [
          {
            "id": "a4e878c9-ef54-43fb-8eaf-e89cc2f3d5b5",
            "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.