The full feature gate review lifecycle is now exposed over the Console API.
Eight new endpoints cover the complete review lifecycle:
POST /gates/:id/reviews create a review with the proposed change
GET /gates/:id/reviews list reviews, newest first
GET /gates/:id/reviews/:reviewID get a single review
PUT /gates/:id/reviews/:reviewID edit metadata or content
PUT /gates/:id/reviews/:reviewID/approve approve
PUT /gates/:id/reviews/:reviewID/reject reject
DELETE /gates/:id/reviews/:reviewID cancel an in-flight review
GET /gates/:id/eligible_reviewers look up eligible reviewers
Before , creating and moving a review through approval required the console, blocking any automated workflow that touched a review-gated gate. Now you can propose, approve, and commit gate changes entirely through the API, with no manual console step in the way.
Review the full API reference in the Statsig Console API docs.