ApiV3Generated
Entity Type Reviewers
Overview of the Entity Type Reviewers API
Hand off to an LLM
Reviewer assignments link users to the entity types they are responsible for reviewing, scoped to an account+environment. These are dashboard-only endpoints: an assignment needs a user identity, which only the dashboard (JWT) surface carries.
POST /v3/entity-types/{typeID}/reviewersassigns a user as a reviewer of the type. The assignment is idempotent: re-assigning an existing reviewer returns the existing assignment. Requires theadminrole.GET /v3/entity-types/{typeID}/reviewerslists the users assigned to review the type, with each user's email and role. Requires theoperatorrole.DELETE /v3/entity-types/{typeID}/reviewers/{userID}removes an assignment. Requires theadminrole.GET /v3/users/{userID}/reviewer-assignmentsis the reverse lookup: the entity types a user reviews. A user may read their own assignments; reading another user's assignments requires theadminrole.