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": "56bc5b12-ade4-4ca5-bf73-6663f77db766",
    "type": "retrospective_processes",
    "attributes": {
      "name": "Retrospective Process 1",
      "description": "Retrospective Process 1 Description",
      "is_default": false,
      "created_at": "2025-03-26T23:24:15.194-07:00",
      "updated_at": "2025-03-26T23:24:15.194-07:00",
      "retrospective_process_matching_criteria": {
        "severity_ids": [
          "0819cbf3-7be5-487f-a8f0-b4d59e220186"
        ]
      }
    },
    "relationships": {
      "retrospective_steps": {
        "data": [
          {
            "id": "8960aac0-2876-41cb-af69-2d17b0997b27",
            "type": "retrospective_steps"
          },
          {
            "id": "b92fec05-f41a-4422-9e70-77f92c741f55",
            "type": "retrospective_steps"
          }
        ]
      },
      "severities": {
        "data": [
          {
            "id": "0819cbf3-7be5-487f-a8f0-b4d59e220186",
            "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