> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flowengineering.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Changed entities on a branch awaiting the current user's review

> Ids of this branch's changed entities that await the current user's review: entities whose firing stage gate lists them as a pending reviewer, PLUS entities whose reviewer fields/groups designate them (the latter works even without stage gates). Users who have already approved the branch are excluded; empty when nothing awaits the caller.



## OpenAPI

````yaml /openapi/customer-api.json get /project/{projectId}/branch/{id}/awaiting-my-review-entities
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Flow customer API reference. Start with the [quickstart](/api/quickstart)
    and [authentication guide](/api/authentication).
  title: Customer API
  version: 1.0.0
servers:
  - description: Flow API
    url: https://backend.branch.flowengineering.com
security: []
tags:
  - name: Automations
  - name: Branches
  - name: Comments
  - name: Convert
  - name: Data Model
  - name: Diagrams
  - name: Entities
  - name: Files
  - name: Import
  - name: Notifications
  - name: Projects
  - name: ReqIF
  - name: ReqIF Import
  - name: Shared Access Grants
  - name: User Groups
  - name: Users
paths:
  /project/{projectId}/branch/{id}/awaiting-my-review-entities:
    get:
      tags:
        - Branches
      summary: Changed entities on a branch awaiting the current user's review
      description: >-
        Ids of this branch's changed entities that await the current user's
        review: entities whose firing stage gate lists them as a pending
        reviewer, PLUS entities whose reviewer fields/groups designate them (the
        latter works even without stage gates). Users who have already approved
        the branch are excluded; empty when nothing awaits the caller.
      operationId: BranchController_stageGateAwaitingMe
      parameters:
        - in: path
          name: projectId
          required: true
          schema:
            description: >-
              Project UUID, not a slug. Resolve a slug with GET
              /project/slug/{slug} using the same workspace and credentials,
              then pass the returned id.
            type: string
        - in: path
          name: id
          required: true
          schema:
            type: string
        - description: Workspace identifier
          in: header
          name: customer
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
          description: ''
      security:
        - api-key: []
        - bearer: []
components:
  securitySchemes:
    api-key:
      in: header
      name: X-API-Key
      type: apiKey
    bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http

````