List RetrospectiveProcessGroup Steps
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_groups/{retrospective_process_group_id}/steps \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "<string>",
"retrospective_step_id": "<string>",
"position": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_groups/{retrospective_process_group_id}/steps \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "<string>",
"retrospective_step_id": "<string>",
"position": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}