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": "20f9e641-50ba-4795-b9cd-201c4a45e700",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-10T03:19:40.487-08:00",
"updated_at": "2026-02-10T03:19:40.487-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"2b042a4a-b10a-46f4-bace-edbd8e67f42c"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "6d690e65-374c-4a93-b220-b5aedeabf5f9",
"type": "retrospective_steps"
},
{
"id": "71ae128a-e99a-4e32-837a-7850e3beca4d",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "2b042a4a-b10a-46f4-bace-edbd8e67f42c",
"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": "20f9e641-50ba-4795-b9cd-201c4a45e700",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-02-10T03:19:40.487-08:00",
"updated_at": "2026-02-10T03:19:40.487-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"2b042a4a-b10a-46f4-bace-edbd8e67f42c"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "6d690e65-374c-4a93-b220-b5aedeabf5f9",
"type": "retrospective_steps"
},
{
"id": "71ae128a-e99a-4e32-837a-7850e3beca4d",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "2b042a4a-b10a-46f4-bace-edbd8e67f42c",
"type": "severities"
}
]
}
}
}
}