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": "25c2c16e-c958-4501-82d2-0898b6ce3d56",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2025-05-08T00:23:56.559-07:00",
      "updated_at": "2025-05-08T00:23:56.559-07:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "c043a1e1-6372-472f-b48e-e75f0beb706d"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "1b2d31f1-245a-431d-bcc7-216f752f1049",
            "type": "retrospective_steps"
          },
          {
            "id": "7dfcafcd-47b4-43d6-8547-6bc3fb93a31c",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "c043a1e1-6372-472f-b48e-e75f0beb706d",
            "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

Response

201
application/vnd.api+json
retrospective_process created

The response is of type object.