Skip to main content
GET
/
groups
/
{group_id}
/
reviewer-stages
cURL
curl --request GET \
  --url https://api.opal.dev/v1/groups/{group_id}/reviewer-stages \
  --header 'Authorization: Bearer <token>'
[
  {
    "owner_ids": [
      "7870617d-e72a-47f5-a84c-693817ab4567",
      "1520617d-e72a-47f5-a84c-693817ab48ad2"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

group_id
string<uuid>
required

The ID of the group.

Response

200 - application/json

The reviewer stages for this group.

A list of reviewer stages.

require_manager_approval
boolean
required

Whether this reviewer stage should require manager approval.

Example:

false

operator
enum<string>
required

The operator of the reviewer stage. Admin and manager approval are also treated as reviewers.

Available options:
AND,
OR
Example:

"AND"

owner_ids
string<uuid>[]
required
require_admin_approval
boolean

Whether this reviewer stage should require admin approval.

Example:

false