Skip to main content
POST
/
v1
/
retrospective_processes
Creates a retrospective process
curl --request POST \
  --url https://api.rootly.com/v1/retrospective_processes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "retrospective_processes",
    "attributes": {
      "name": "<string>",
      "copy_from": "<string>",
      "description": "<string>",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "<string>"
        ]
      }
    }
  }
}
'
{
  "data": {
    "id": "b54aaad0-1370-48e3-84b5-19be1279981b",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2026-02-18T05:18:51.920-08:00",
      "updated_at": "2026-02-18T05:18:51.920-08:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "c370ba8c-1f34-4536-b84b-2cb098f0432d"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "d2dec6c6-ecbb-4ba1-b115-ee47d0022180",
            "type": "retrospective_steps"
          },
          {
            "id": "f3d5249f-1d66-4ced-86f7-2a083d61b85e",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "c370ba8c-1f34-4536-b84b-2cb098f0432d",
            "type": "severities"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

retrospective_process created

data
object
required