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

# Get a journal entry's activity timeline

> The audit trail for one entry: every executed action that referenced it (created, edited, voided, settled), with who requested it and when. Derived from the durable action-request log, so history survives reversals.



## OpenAPI

````yaml /openapi.json get /api/journal-entries/{id}/activity
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/journal-entries/{id}/activity:
    get:
      tags:
        - Journal Entries
      summary: Get a journal entry's activity timeline
      description: >-
        The audit trail for one entry: every executed action that referenced it
        (created, edited, voided, settled), with who requested it and when.
        Derived from the durable action-request log, so history survives
        reversals.
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Activity events for the entry
          content:
            application/json:
              schema:
                type: object
                properties:
                  activity:
                    type: array
                    items:
                      $ref: '#/components/schemas/ActivityEvent'
                required:
                  - activity
      security:
        - bearerAuth: []
components:
  schemas:
    ActivityEvent:
      type: object
      properties:
        id:
          type: string
          description: The action request id.
        kind:
          type: string
          enum:
            - attach_evidence
            - enrich
            - detach_receipt
            - edit_postings
            - post_transaction
            - unpost_transaction
            - apply_bill_payment
            - unapply_bill_payment
            - apply_invoice_collection
            - unapply_invoice_collection
            - link_account_transfer
            - unlink_account_transfer
            - create_journal_entry
            - void_journal_entry
            - delete_transaction
        executedAt:
          type: string
        documentId:
          type: number
          nullable: true
        documentLabel:
          type: string
          nullable: true
        transactionId:
          type: number
          nullable: true
        transactionLabel:
          type: string
          nullable: true
        requestedByUserId:
          type: string
        note:
          type: string
          nullable: true
        summary:
          type: string
          nullable: true
      required:
        - id
        - kind
        - executedAt
        - documentId
        - documentLabel
        - transactionId
        - transactionLabel
        - requestedByUserId
        - note
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````