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

# List Table Sheet Operations

> List active operations for a Table sheet.

List active recalculation operations and cell status counts for a Table sheet.

Use this endpoint to determine whether a sheet has queued or running work before mutating columns, rows, cells, or score configuration.


## OpenAPI

````yaml GET /api/public/v2/tables/{table_id}/sheets/{sheet_id}/operations
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security:
  - ApiKeyAuth: []
paths:
  /api/public/v2/tables/{table_id}/sheets/{sheet_id}/operations:
    get:
      tags:
        - tables
      summary: List Table Sheet Operations
      description: >-
        List active recalculation operations and cell status counts for a Table
        sheet. Requests are scoped to the workspace associated with the API key;
        table, sheet, column, cell, operation, and version IDs must belong to
        that workspace.
      operationId: listTableSheetOperations
      parameters:
        - name: X-API-KEY
          in: header
          required: true
          schema:
            type: string
          description: >-
            Your PromptLayer API key. The key's workspace scopes table resources
            for this request.
        - name: table_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Table ID.
        - name: sheet_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Table sheet ID.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTableSheetOperationsResponse'
        '400':
          description: Invalid workspace context.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Table or sheet not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListTableSheetOperationsResponse:
      type: object
      title: ListTableSheetOperationsResponse
      required:
        - success
        - sheet_id
        - version
        - total_cells
        - status_counts
        - pending_count
        - active_operations
      properties:
        success:
          type: boolean
        sheet_id:
          type: string
          format: uuid
        version:
          type: integer
        total_cells:
          type: integer
        status_counts:
          type: object
          additionalProperties:
            type: integer
        pending_count:
          type: integer
        active_operations:
          type: array
          items:
            $ref: '#/components/schemas/TableSheetOperation'
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          default: false
          description: Indicates that the request failed.
        message:
          type: string
          description: Human-readable error message.
        error:
          type: string
          description: Machine-readable or fallback error message.
      additionalProperties: true
      description: >-
        Standard error response. Some legacy endpoints may return either message
        or error.
    TableSheetOperation:
      type: object
      title: TableSheetOperation
      required:
        - operation_id
        - operation
        - status
        - status_counts
        - cell_count
        - completed_count
        - failed_count
        - pending_count
        - status_url
      properties:
        operation_id:
          type: string
        operation:
          type: string
          enum:
            - recalculate
        status:
          type: string
        status_counts:
          type: object
          additionalProperties:
            type: integer
        cell_count:
          type: integer
        completed_count:
          type: integer
        failed_count:
          type: integer
        pending_count:
          type: integer
        status_url:
          type: string
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````