Retrieves a specific retrospective step by id
curl --request GET \
--url https://api.rootly.com/v1/retrospective_steps/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "<string>",
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"description": "<string>",
"incident_role_id": "<string>",
"due_after_days": 123,
"position": 123,
"skippable": true
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
retrospective_step found
Show child attributes
Unique ID of the step
retrospective_steps Show child attributes
The name of the step
Date of creation
Date of last update
The slug of the step
The description of the step
Users assigned to the selected incident role will be the default owners for this step
Due date in days
Position of the step
Is the step skippable?
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_steps/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "<string>",
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"description": "<string>",
"incident_role_id": "<string>",
"due_after_days": 123,
"position": 123,
"skippable": true
}
}
}