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

# New Event Started

Triggers a workflow whenever a new event begins in the calendar.
Note: All-day events are excluded, and only `Single Events` are considered for triggering.

**Endpoint**: `https://www.googleapis.com/calendar/v3/calendars/{calendarId}/events`

<Note>
  Workflows with this trigger check for new events **every 5 minutes by default**. You can adjust this interval in the Trigger settings.
</Note>

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                    |
  | ----------- | ------------------------------------------------------------------------------ |
  | Calendar ID | Calendar identifier. To retrieve calendar IDs use the `List Calendars` action. |
</div>

## Sample Event

```json theme={"dark"}
{
	"kind": "calendar#event",
	"etag": "\"3336843400970000\"",
	"id": "event-2",
	"status": "confirmed",
	"htmlLink": "https://www.google.com/calendar/event?eid=event-2-id",
	"created": "2022-11-14T10:26:20.000Z",
	"updated": "2022-11-14T10:28:20.485Z",
	"summary": "Onboarding meeting with HR",
	"creator": {
		"email": "self@example.com",
		"self": true
	},
	"organizer": {
		"email": "self@example.com",
		"self": true
	},
	"start": {
		"dateTime": "2022-11-16T10:00:00+02:00",
		"timeZone": "Asia/Jerusalem"
	},
	"end": {
		"dateTime": "2022-11-16T10:30:00+02:00",
		"timeZone": "Asia/Jerusalem"
	},
	"iCalUID": "event-2@google.com",
	"sequence": 0,
	"attendees": [
		{
			"email": "self@example.com",
			"organizer": true,
			"self": true,
			"responseStatus": "accepted"
		},
		{
			"email": "attendee2@example.com",
			"responseStatus": "accepted"
		}
	],
	"guestsCanModify": true,
	"reminders": {
		"useDefault": true
	},
	"eventType": "default"
}
```
