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": "bdf846ac-e1d2-42cf-aa4d-88c3ddc839f4",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-01T18:06:37.345-08:00",
"updated_at": "2026-02-01T18:06:37.345-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"9561e261-4348-4c9e-9d50-6300d03ea4fb"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "6c48c882-0e59-4ad7-809b-2921298410d9",
"type": "retrospective_steps"
},
{
"id": "2f503bb9-7ef1-41ff-87ef-30789b09dba0",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "9561e261-4348-4c9e-9d50-6300d03ea4fb",
"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": "bdf846ac-e1d2-42cf-aa4d-88c3ddc839f4",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-01T18:06:37.345-08:00",
"updated_at": "2026-02-01T18:06:37.345-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"9561e261-4348-4c9e-9d50-6300d03ea4fb"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "6c48c882-0e59-4ad7-809b-2921298410d9",
"type": "retrospective_steps"
},
{
"id": "2f503bb9-7ef1-41ff-87ef-30789b09dba0",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "9561e261-4348-4c9e-9d50-6300d03ea4fb",
"type": "severities"
}
]
}
}
}
}