---
title: "Retrieve a single Event"
method: GET
path: "/v2/event/{id}"
tags: ["Events"]
---

# Retrieve a single Event

`GET /v2/event/{id}`

Retrieves a single Event by its ID.

## Path parameters

- `id` string, required

## Headers

- `Authorization` string, required

## Response `200`

The requested Event.

- ResponseAttachEventV2Dto
  - `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.
  - `attachments` string[] — Array of attachments.

## Other responses

- `400` — The provided ID is not a valid event ID.
- `401` — Missing or invalid authentication token.
- `404` — Event not found.

---

[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)
