Skip to main content
PUT
/
api
/
settings
/
reviewers
Set Global Reviewers
curl --request PUT \
  --url https://api.example.com/api/settings/reviewers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reviewer_ids": [
    123
  ]
}
'
{
  "reviewers": [
    {
      "id": 123,
      "email": "<string>",
      "name": "<string>",
      "roles": []
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Cookies

antidote_session
string | null

Body

application/json
reviewer_ids
integer[]
required

Response

Successful Response

reviewers
UserSummary · object[]
required