Creates a new retrospective process from provided data
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": "fa454108-044b-4cc5-bc3c-06307bc0fe52",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-02T20:42:05.870-08:00",
"updated_at": "2026-02-02T20:42:05.870-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"2ed07176-9cbb-4234-9666-b6634e7a4b1a"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "476044b3-48f0-4f6f-b0cc-80042a7ac3ed",
"type": "retrospective_steps"
},
{
"id": "8d1412dd-2323-4de6-a075-eebc337c6abb",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "2ed07176-9cbb-4234-9666-b6634e7a4b1a",
"type": "severities"
}
]
}
}
}
}Was this page helpful?
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": "fa454108-044b-4cc5-bc3c-06307bc0fe52",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-02T20:42:05.870-08:00",
"updated_at": "2026-02-02T20:42:05.870-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"2ed07176-9cbb-4234-9666-b6634e7a4b1a"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "476044b3-48f0-4f6f-b0cc-80042a7ac3ed",
"type": "retrospective_steps"
},
{
"id": "8d1412dd-2323-4de6-a075-eebc337c6abb",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "2ed07176-9cbb-4234-9666-b6634e7a4b1a",
"type": "severities"
}
]
}
}
}
}