---
title: "Get ticket activity"
method: GET
path: "/api/v1/tickets/{ticket_id}/activity"
tags: ["tickets"]
---

# Get ticket activity

`GET /api/v1/tickets/{ticket_id}/activity`

Get activity log events for a specific ticket.

## Path parameters

- `ticket_id` string, required

## Query parameters

- `limit` integer — Maximum events to return
- `offset` integer — Offset for pagination

## Response `200`

Successful Response

- PaginatedResponseEventsResponse — PaginatedResponseEventsResponse
  - `total_count` integer, required — The total number of items available to return for this query.
  - `items` EventsResponse[], required — Array of returned items.
    - `id` string, required — Event unique identifier
    - `source` string, required — Event source
    - `type` string, required — Event type
    - `time` string, date-time, required — Event timestamp
    - `tenant_id` string, required — Tenant identifier
    - `data` EventData — Event data payload with required actor and targets.
      - `actor` EventEntity, required — Represents the entity in the event can be Actor or Target of the event.
        - `id` string, required — Unique identifier for the entity
        - `type` 'user' | 'ticket' | 'asset' | 'application' | 'employee' | 'system' | 'workflow', required — Supported entity types in the Harmony platform (actors and targets).
        - `tags` EventTag[], nullable
          - `key` string, required — Tag key identifier
          - `value` string, required — Tag value (string only)
      - `targets` EventEntity[], required — The target resources affected by this event (at least one)
        - `id` string, required — Unique identifier for the entity
        - `type` 'user' | 'ticket' | 'asset' | 'application' | 'employee' | 'system' | 'workflow', required — Supported entity types in the Harmony platform (actors and targets).
        - `tags` EventTag[], nullable
          - `key` string, required — Tag key identifier
          - `value` string, required — Tag value (string only)
      - `metadata` object, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/harmony/apis/service-desk.md) · [All operations](https://skmtc.net/harmony/apis/service-desk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/harmony/service-desk/revisions/abcdc6e980f3/schema)
