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": "bf203045-5c6e-4239-ba83-999f52de7fb3",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-01-28T08:44:35.760-08:00",
"updated_at": "2026-01-28T08:44:35.760-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"af30daad-260d-48da-b4f9-022aaad176f2"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "be9a2dc9-dd92-4d57-92ad-b9ccfad91fe6",
"type": "retrospective_steps"
},
{
"id": "9b2a4724-64db-480b-b7b8-2a3cb17ed520",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "af30daad-260d-48da-b4f9-022aaad176f2",
"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": "bf203045-5c6e-4239-ba83-999f52de7fb3",
"type": "retrospective_processes",
"attributes": {
"name": "Retrospective Process 1",
"description": "Retrospective Process 1 Description",
"is_default": false,
"created_at": "2026-01-28T08:44:35.760-08:00",
"updated_at": "2026-01-28T08:44:35.760-08:00",
"retrospective_process_matching_criteria": {
"severity_ids": [
"af30daad-260d-48da-b4f9-022aaad176f2"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "be9a2dc9-dd92-4d57-92ad-b9ccfad91fe6",
"type": "retrospective_steps"
},
{
"id": "9b2a4724-64db-480b-b7b8-2a3cb17ed520",
"type": "retrospective_steps"
}
]
},
"severities": {
"data": [
{
"id": "af30daad-260d-48da-b4f9-022aaad176f2",
"type": "severities"
}
]
}
}
}
}