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

# List who reaches each of a set of rows

> Returns, per row, the ids of everyone who can reach it, plus each of those people once with their display name.

Same access rules as the full audience, answered row by row rather than folded across the set.



## OpenAPI

````yaml post /table/rows/access/summary
openapi: 3.1.0
info:
  title: HERO API
  version: current
  description: |-
    The HERO REST API.

    See https://developers.myhero.so for the rendered docs.
servers:
  - url: https://app.myhero.so
security: []
paths:
  /table/rows/access/summary:
    post:
      tags:
        - Tables
      summary: List who reaches each of a set of rows
      description: >-
        Returns, per row, the ids of everyone who can reach it, plus each of
        those people once with their display name.


        Same access rules as the full audience, answered row by row rather than
        folded across the set.
      operationId: getRowAccessSummary
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                rowIds:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  maxItems: 500
              required:
                - rowIds
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      people:
                        type: array
                        items:
                          type: object
                          properties:
                            userId:
                              type: string
                            name:
                              type: string
                          required:
                            - userId
                            - name
                      rows:
                        type: object
                        additionalProperties:
                          type: array
                          items:
                            type: string
                    required:
                      - people
                      - rows
                required:
                  - data
        '400':
          description: 400 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: |-
                      Error class name (e.g.

                      ValidationError, NotFound)
                  message:
                    type: string
                    description: Human-readable error message
                  details:
                    type: array
                    items: {}
                required:
                  - error
                  - message
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: HERO personal access token

````