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": "ddcfe8f4-7075-46ff-81b1-29165935e0fd",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2026-02-13T18:09:35.118-08:00",
      "updated_at": "2026-02-13T18:09:35.118-08:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "d1c99a4f-c06b-4026-8d4b-83a26faa47d4"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "94f76eec-81c6-4c8e-968e-0ab98a484550",
            "type": "retrospective_steps"
          },
          {
            "id": "65ba30a0-7652-4d99-aad2-93117f76fd6a",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "d1c99a4f-c06b-4026-8d4b-83a26faa47d4",
            "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