GET
/
v1
/
retrospective_processes
/
{retrospective_process_id}
/
groups
curl --request GET \
  --url https://api.rootly.com/v1/retrospective_processes/{retrospective_process_id}/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "retrospective_process_groups",
      "attributes": {
        "retrospective_process_id": "<string>",
        "sub_status_id": "<string>",
        "position": 123
      }
    }
  ],
  "links": {
    "self": "<string>",
    "first": "<string>",
    "prev": "<string>",
    "next": "<string>",
    "last": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

retrospective_process_id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: retrospective_process_group_steps

Available options:
retrospective_process_group_steps
sort
enum<string>

comma separated if needed. eg: created_at,updated_at

Available options:
created_at,
-created_at,
updated_at,
-updated_at,
position,
-position
page[number]
integer
page[size]
integer
filter[sub_status_id]
string
filter[created_at][gt]
string
filter[created_at][gte]
string
filter[created_at][lt]
string
filter[created_at][lte]
string

Response

200 - application/vnd.api+json
success
data
object[]
required