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

# Get an event

> Retrieve the details of an existing event.

### Parameters

<ParamField type="string" path="id" initialValue="evt_abc123def456" required>
  The ID of the event to retrieve.
</ParamField>

### Returns

Returns an event object if a valid identifier was provided, and returns an error otherwise.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "evt_abc123def456",
    "type": "worker.updated",
    "subject": "wr_xyz789",
    "workspace": "ws_456def",
    "data": {
      "id": "wr_xyz789",
      "first_name": "Jane",
      "last_name": "Smith",
      "email": "jane.smith@example.com",
      "status": "active"
    },
    "created": "2024-01-15T10:30:00Z"
  }
  ```
</ResponseExample>
