List retrospective configurations
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
comma separated if needed. eg: severities,groups
severities, groups, incident_types success
Show child attributes
Unique ID of the configuration
retrospective_configurations Show child attributes
The kind of the configuration.
skip, mandatory The Severity ID's to attach to the retrospective configuration
The Team ID's to attach to the retrospective configuration
The Incident Type ID's to attach to the retrospective configuration
Date of creation
Date of last update
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_configurations \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "retrospective_configurations",
"attributes": {
"kind": "skip",
"severity_ids": [
"<string>"
],
"group_ids": [
"<string>"
],
"incident_type_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}
]
}