v2

latestOpenAPI 3.0.02026-08-073221853.1 MB
Experiments
Experiments

Get Eligible Reviewers

get/console/v1/experiments/{id}/eligible_reviewers

Path parameters

idstring required

id

Response

Users and groups eligible to review changes to this experiment. everyone_eligible is true when no specific reviewers are configured. users is the flattened, deduped union of individual reviewers and all group members; groups lists each eligible group with its member user_ids. Project admins can always review and are not enumerated.

messagestring required

A simple string explaining the result of the operation.

Example response

{
  "data": {
    "everyone_eligible": false,
    "users": [
      {
        "id": "user_abc",
        "email": "alice@example.com",
        "name": "Alice Example"
      }
    ],
    "groups": [
      {
        "id": "group_xyz",
        "name": "Growth",
        "user_ids": [
          "user_abc"
        ]
      }
    ]
  },
  "message": "Successfully retrieved eligible reviewers"
}