---
title: "Retrieve a list of Events"
method: GET
path: "/v2/event"
tags: ["Events"]
---

# Retrieve a list of Events

`GET /v2/event`

Retrieves a paginated list of Events.

## Query parameters

- `pageSize` number
- `page` number

## Headers

- `Authorization` string, required

## Response `200`

A paginated list of Events.

- ResponseEventsV2Dto
  - `pageSize` number — The maximum number of items returned per page.
  - `page` number — The current page number.
  - `totalResults` number — The total number of results.
  - `hasMore` boolean — Whether there are more results.
  - `data` ResponseEventV2Dto[] — A list of Events.
    - `id` string — The ID of the event (prefix `EVT-`).
    - `status` 'Done' | 'Open' — The status of the event.
    - `title` string — The title of the event.
    - `description` string — The description of the event.
    - `start` string — The time & date when the event starts.
    - `end` string — The time & date when the event ends.
    - `isAllDay` boolean — Whether the event is an all-day event.
    - `techIds` string[] — Array of tech IDs assigned to the event (prefix `USR-`).
    - `isDeleted` boolean — Whether the event is deleted.
    - `updatedAt` string — The date and time the event was updated.
    - `createdAt` string — The date and time the event was created.

## Other responses

- `401` — Missing or invalid authentication token.

---

[API](https://skmtc.net/workiz/apis/developer-api.md) · [All operations](https://skmtc.net/workiz/apis/developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/workiz/developer-api/revisions/14666f4db0f8/schema)
