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": "f70ba52a-2536-49e5-acd0-8d90857f9cb5",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2025-11-27T00:12:01.146-08:00",
      "updated_at": "2025-11-27T00:12:01.146-08:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "9a7a9710-f1a5-46bd-8649-51bca8d1ccb0"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "113e29cb-660f-43b9-be2a-f48822aec93e",
            "type": "retrospective_steps"
          },
          {
            "id": "37403ec4-c76b-4894-bc69-450299a01f04",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "9a7a9710-f1a5-46bd-8649-51bca8d1ccb0",
            "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