Skip to main content

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.
1

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.
2

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.
3

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:
curl "https://api.nango.dev/proxy/v1.0/me" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials with the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

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. Official docs: Microsoft Graph API documentation

🧩 Pre-built syncs & actions for Outlook

Enable them in your dashboard. Extend and customize to fit your needs.

Calendar

Function nameDescriptionTypeSource code
delete-eventDelete an event from a calendar.ActionπŸ”— Github

Calendars

Function nameDescriptionTypeSource code
create-calendarCreate a secondary calendar in the mailbox.ActionπŸ”— Github
delete-calendarDelete a secondary calendar.ActionπŸ”— Github
get-calendarRetrieve a calendar by ID.ActionπŸ”— Github
list-calendarsList calendars in the mailbox.ActionπŸ”— Github
update-calendarUpdate calendar properties.ActionπŸ”— Github

Events

Function nameDescriptionTypeSource code
add-event-attachmentAttach a small file (under 3 MB) to an Outlook event.ActionπŸ”— Github
cancel-eventCancel a meeting and send the cancellation notice to attendeesActionπŸ”— Github
create-eventCreate an event on a calendar.ActionπŸ”— Github
get-eventRetrieve an event by ID from the user’s calendarActionπŸ”— Github
list-event-attachmentsList attachments on an event.ActionπŸ”— Github
update-eventUpdate event details in Outlook calendar.ActionπŸ”— Github

Mail

Function nameDescriptionTypeSource code
create-mail-folderCreate a child mail folder in Outlook.ActionπŸ”— Github
list-mail-foldersList top-level mail folders from the mailboxActionπŸ”— Github
send-mailSend a new email message immediatelyActionπŸ”— Github

Mail Folders

Function nameDescriptionTypeSource code
list-mail-folder-childrenList child folders under a mail folderActionπŸ”— Github

Messages

Function nameDescriptionTypeSource code
add-message-attachmentAttach a file to a draft message. Note: 3 MB simple upload limit applies.ActionπŸ”— Github
create-draft-messageCreate a draft email messageActionπŸ”— Github
delete-messageDelete a message from the mailboxActionπŸ”— Github
download-message-attachmentDownload the content of a file attachment on a message.ActionπŸ”— Github
get-messageRetrieve a message by ID.ActionπŸ”— Github
list-message-attachmentsList attachments on a message.ActionπŸ”— Github
list-messagesList messages from a mail folder.ActionπŸ”— Github
move-messageMove a message to another mail folder.ActionπŸ”— Github
reply-all-to-messageReply to all recipients on a messageActionπŸ”— Github
reply-to-messageReply to a message sender.ActionπŸ”— Github
send-draft-messageSend an existing draft message.ActionπŸ”— Github
update-messageUpdate a draft or mutable message fields.ActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
copy-messageCopy a message to another mail folder.ActionπŸ”— Github
list-calendar-eventsList events from a calendar or date window.ActionπŸ”— Github
calendarsSync mailbox calendars and basic calendar metadataSyncπŸ”— Github
eventsSync events in a bounded calendar view with delta tokens.SyncπŸ”— Github
mail-foldersSync the mail folder hierarchySyncπŸ”— Github
messagesSync folder-scoped messages with delta tokensSyncπŸ”— Github