Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
π Quickstart
Connect to Outlook with Nango and see data flow in 2 minutes.Create the integration
In Nango (free signup), go to Integrations -> Configure New Integration -> Outlook. Nango doesnβt provide a test OAuth app for Outlook yet. Youβll need to set up your own by following the setup guide linked below. After that, make sure to add the OAuth client ID, secret, and scopes in the integration settings in Nango.
Authorize Outlook
Go to Connections -> Add Test Connection -> Authorize, then log in to Outlook. Later, youβll let your users do the same directly from your app.
Call the Outlook API
Letβs make your first request to the Outlook (Microsoft Graph) API (fetch the profile of the currently signed-in user). Replace the placeholders below with your secret key, integration ID, and connection ID:Or fetch credentials with the Node SDK or API.β
Youβre connected! Check the Logs tab in Nango to inspect requests.
- cURL
- Node
Implement Nango in your app
Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.
π Outlook Integration Guides
Nango maintained guides for common use cases.- How to register your own Outlook OAuth app
Register an OAuth app with Outlook and obtain credentials to connect it to Nango
π§© Pre-built syncs & actions for Outlook
Enable them in your dashboard. Extend and customize to fit your needs.Calendar
| Function name | Description | Type | Source code |
|---|---|---|---|
delete-event | Delete an event from a calendar. | Action | π Github |
Calendars
| Function name | Description | Type | Source code |
|---|---|---|---|
create-calendar | Create a secondary calendar in the mailbox. | Action | π Github |
delete-calendar | Delete a secondary calendar. | Action | π Github |
get-calendar | Retrieve a calendar by ID. | Action | π Github |
list-calendars | List calendars in the mailbox. | Action | π Github |
update-calendar | Update calendar properties. | Action | π Github |
Events
| Function name | Description | Type | Source code |
|---|---|---|---|
add-event-attachment | Attach a small file (under 3 MB) to an Outlook event. | Action | π Github |
cancel-event | Cancel a meeting and send the cancellation notice to attendees | Action | π Github |
create-event | Create an event on a calendar. | Action | π Github |
get-event | Retrieve an event by ID from the userβs calendar | Action | π Github |
list-event-attachments | List attachments on an event. | Action | π Github |
update-event | Update event details in Outlook calendar. | Action | π Github |
| Function name | Description | Type | Source code |
|---|---|---|---|
create-mail-folder | Create a child mail folder in Outlook. | Action | π Github |
list-mail-folders | List top-level mail folders from the mailbox | Action | π Github |
send-mail | Send a new email message immediately | Action | π Github |
Mail Folders
| Function name | Description | Type | Source code |
|---|---|---|---|
list-mail-folder-children | List child folders under a mail folder | Action | π Github |
Messages
| Function name | Description | Type | Source code |
|---|---|---|---|
add-message-attachment | Attach a file to a draft message. Note: 3 MB simple upload limit applies. | Action | π Github |
create-draft-message | Create a draft email message | Action | π Github |
delete-message | Delete a message from the mailbox | Action | π Github |
download-message-attachment | Download the content of a file attachment on a message. | Action | π Github |
get-message | Retrieve a message by ID. | Action | π Github |
list-message-attachments | List attachments on a message. | Action | π Github |
list-messages | List messages from a mail folder. | Action | π Github |
move-message | Move a message to another mail folder. | Action | π Github |
reply-all-to-message | Reply to all recipients on a message | Action | π Github |
reply-to-message | Reply to a message sender. | Action | π Github |
send-draft-message | Send an existing draft message. | Action | π Github |
update-message | Update a draft or mutable message fields. | Action | π Github |
Others
| Function name | Description | Type | Source code |
|---|---|---|---|
copy-message | Copy a message to another mail folder. | Action | π Github |
list-calendar-events | List events from a calendar or date window. | Action | π Github |
calendars | Sync mailbox calendars and basic calendar metadata | Sync | π Github |
events | Sync events in a bounded calendar view with delta tokens. | Sync | π Github |
mail-folders | Sync the mail folder hierarchy | Sync | π Github |
messages | Sync folder-scoped messages with delta tokens | Sync | π Github |