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

# List a finding's status history

> Return the ordered audit trail of status transitions for one finding, including who made each change and when.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/orgs/{orgSlug}/findings/{findingId}/status-history
openapi: 3.0.3
info:
  title: Tolmo API
  version: 1.0.0
  description: >-
    The Tolmo REST API. Every endpoint is scoped to one organization and
    authenticated with an API token.
servers:
  - url: https://api.tolmo.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/orgs/{orgSlug}/findings/{findingId}/status-history:
    get:
      tags:
        - findings
      summary: List a finding's status history
      description: >-
        Return the ordered audit trail of status transitions for one finding,
        including who made each change and when.
      operationId: apiListFindingStatusHistory
      parameters:
        - schema:
            type: string
          in: path
          name: orgSlug
          required: true
        - schema:
            type: string
          in: path
          name: findingId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    findingId:
                      type: string
                    fromStatus:
                      nullable: true
                      type: string
                    toStatus:
                      type: string
                    changedBy:
                      type: string
                    actorDisplayName:
                      type: string
                    changedAt:
                      type: string
                  required:
                    - id
                    - findingId
                    - fromStatus
                    - toStatus
                    - changedBy
                    - actorDisplayName
                    - changedAt
                  additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
components:
  schemas:
    HttpError:
      type: object
      properties:
        statusCode:
          type: number
        code:
          type: string
        error:
          type: string
        message:
          type: string
      title: HttpError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Tolmo API token, sent as `Authorization: Bearer <token>`. Either a
        user token (`usr_tok.*`, minted by `tolmo auth login`, scoped to your
        own permissions) or an org API token created in the Tolmo app, for CI
        and automation.

````