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

# Trigger firings

> Every firing, with the rule, its version and the evidence pointers.



## OpenAPI

````yaml openapi/en/cell.json GET /v1/triggers/firings
openapi: 3.1.0
info:
  title: Niadra data API
  version: '1'
  description: >-
    Writing, context, history, objects, identity, privacy and governance of one
    space. Every space has a stable address, with the space and the region in
    its name.
servers:
  - url: https://{space}.{region}.api.niadra.com
    variables:
      space:
        default: acme-prod
        description: The space, which comes in the source key.
      region:
        default: us-east-1
        description: The region of the space, which also comes in the key.
security: []
paths:
  /v1/triggers/firings:
    get:
      tags:
        - operate
      summary: Trigger firings
      description: >-
        Lists the firings of your trigger rules, with the rule version and the
        pointers to the evidence, never the content of a conversation. A firing
        whose evidence was split by an unmerge shows `retracted_at`.


        **Authentication.** Console person token with the `integration`,
        `analysis` role (or admin), or a source key with the `admin` scope.
      operationId: list_firings_v1_triggers_firings_get
      parameters:
        - in: query
          name: cursor
          required: false
          schema:
            anyOf:
              - maxLength: 200
                type: string
              - type: 'null'
            title: Cursor
          description: Opaque cursor from `next_cursor`.
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: rule_id
          required: false
          schema:
            anyOf:
              - maxLength: 64
                type: string
              - type: 'null'
            title: Rule Id
        - in: query
          name: subject_id
          required: false
          schema:
            anyOf:
              - format: uuid
                type: string
              - type: 'null'
            title: Subject Id
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FiringPage'
              example:
                items:
                  - firing_id: tf_01J8ZT
                    rule_id: overdue-visit
                    rule_version: '4'
                    subject_id: 0192f7a0-3b2e-7d41-8c5a-2e9f4b7a1c03
                    window_key: '2026-09-23'
                    fired_at: '2026-09-23T15:05:00Z'
                    late: false
                    retracted_at: null
                    evidence:
                      - kind: open_item
                        id: oi_01J8ZK
                next_cursor: null
          description: One page of firings.
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
          description: The request does not match the contract.
      security:
        - sourceKey: []
        - personToken: []
components:
  schemas:
    FiringPage:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/FiringView'
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      required:
        - items
      title: FiringPage
      type: object
    Problem:
      additionalProperties: false
      description: RFC 9457 problem details; `code` comes from the versioned error catalog.
      properties:
        code:
          title: Code
          type: string
        detail:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Detail
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Request Id
        status:
          title: Status
          type: integer
        title:
          title: Title
          type: string
        type:
          default: about:blank
          title: Type
          type: string
      required:
        - title
        - status
        - code
      title: Problem
      type: object
    FiringView:
      additionalProperties: false
      properties:
        evidence:
          items:
            $ref: '#/components/schemas/EvidencePointer'
          title: Evidence
          type: array
        fired_at:
          format: date-time
          title: Fired At
          type: string
        firing_id:
          title: Firing Id
          type: string
        late:
          title: Late
          type: boolean
        retracted_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Retracted At
        rule_id:
          title: Rule Id
          type: string
        rule_version:
          title: Rule Version
          type: string
        subject_id:
          title: Subject Id
          type: string
        window_key:
          title: Window Key
          type: string
      required:
        - firing_id
        - rule_id
        - rule_version
        - subject_id
        - window_key
        - fired_at
        - late
        - evidence
      title: FiringView
      type: object
    EvidencePointer:
      additionalProperties: false
      properties:
        id:
          title: Id
          type: string
        kind:
          title: Kind
          type: string
      required:
        - kind
        - id
      title: EvidencePointer
      type: object
  securitySchemes:
    sourceKey:
      type: http
      scheme: bearer
      description: nia_sk_...
    personToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````