POST
/
v1
/
retrospective_processes
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": "96a83b8f-c407-4894-a37e-bfa87221b674",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2025-04-18T18:22:28.187-07:00",
      "updated_at": "2025-04-18T18:22:28.187-07:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "95c4bfff-30af-4088-a4bb-88bf6579061b"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "c9246bb3-df7b-469b-8393-72f6ed79063d",
            "type": "retrospective_steps"
          },
          {
            "id": "8ba6df0c-f9c2-4d5c-9ff8-2a4d5b2d2a5d",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "95c4bfff-30af-4088-a4bb-88bf6579061b",
            "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

201
application/vnd.api+json
retrospective_process created
data
object
required