Microsoft Outlook Step
Creates a calendar event in Microsoft Outlook. Use this step to schedule meetings, appointments, or reminders directly from a workflow.
Top-level properties
| name | type | required | constraints | |
|---|---|---|---|---|
connection | string | yes | Name of the connection instance | |
action | string | yes | enum: CREATE_EVENT | Operation to perform |
calendarId | string | yes | Target calendar id | |
title | string | yes | Event title/subject | |
startTime | string | yes | ISO 8601 datetime | Event start date and time |
endTime | string | yes | ISO 8601 datetime | Event end date and time |
timeZone | string | no | IANA timezone name | Defaults to calendar timezone |
description | string | no | Event body/notes | |
attendees | array[string] | no | Email addresses | Attendees to invite |
Example (JSON)
{
"connection": "outlook-prod",
"action": "CREATE_EVENT",
"calendarId": "primary",
"title": "Onboarding Call",
"startTime": "2025-10-01T14:00:00Z",
"endTime": "2025-10-01T15:00:00Z",
"timeZone": "America/New_York",
"description": "Welcome call for new customer intake.",
"attendees": [
"[email protected]",
"[email protected]"
]
}Updated 1 day ago
