Welcome to Next Matter home pagelight logodark logo
  • Contact us
  • Status
  • Sign in
  • Sign in
Get started
Components
Integrations
Portals
Sidebars
Solutions
Updates
APIs
  • Product updates
  • Videos
  • Overview
    • Integration types
    • Webhook triggers
    • Templates
    • Scopes and permissions
    API
    • API keys and credentials
    • Quick scripts and API examples
    No-code
    • No-code automations
    • Quick actions
    • Next Matter actions
    • No-code operations
    Custom integrations
    • Integrate with Airtable
    • Integrate with Amazon Redshift
    • Integrate with Asana
    • Integrate with Azure Event Hubs
    • Integrate with Box
    • Integrate with DHL
    • Integrate with Docusign
    • Integrate with Front
    • Integrate with Freshdesk
    • Integrate with GIPHY
    • Integrate with Google
    • Integrate with HubSpot
    • Integrate with Intercom
    • Integrate with Jira
    • Integrate with Mailchimp
    • Integrate with Microsoft
      • Integrate with Microsoft
      • Integrate with Microsoft Dynamics 365
      • Integrate with Outlook
      • Integrate with SharePoint
      • Integrate with Teams
      • Integrate with Excel
      • Integrate with OneDrive
    • Integrate with Notion
    • Integrate with Nutshell
    • Integrate with PostgreSQL
    • Integrate with Sendgrid
    • Integrate with Slack
    • Integrate with Smartsheet
    • Integrate with Twilio
    • Integrate with Zapier
    • Integrate with Zendesk
    Custom integrations
    Integrate with Microsoft

    Integrate with Outlook

    Send information and email invitations to event participants directly from your workflow.

    As part of the integration, you need to allowlist the Next Matter domain and create a service account. See if you’ve completed all the required steps.

    Use a Next Matter no-code step (+ Add step > Integrations) For details, see Connect to outlook code-free

    ​
    Send an email invite

    1. In your Next Matter portal, click Workflows, and then click the workflow that should send invites to Outlook.
    2. Click Edit workflow.
    3. Click +Add step and select Integration > Custom integration.
    4. Click Settings to configure the step.
    5. Enter the following details:
      • Method: POST

      • URL: https://graph.microsoft.com/v1.0/users/YOUR_USER_ID/calendar/events Your user ID is the unique email address that was created for you to use when you sign in to Microsoft 365. A user ID may look similar to the following: ellen@contoso.partner.onmschina.cn

      • Headers: Content-Type: application/json

      • In the Body enter the values. For example, the body might look like the following.

        Copy
        Ask AI
        {
          "subject": "EMAIL_SUBJECT", //this is a placeholder
          "body": {
            "contentType": "HTML",
            "content": "EMAIL_CONTENT" //this is a placeholder
          },
          "start": {
              "dateTime": "START_DATE_YYYY-MM-DD & START_TIME_HH:MM:SS", //this is a placeholder
              "timeZone": "TIMEZONE" //this is a placeholder
          },
          "end": {
              "dateTime": "END_DATE_YYYY-MM-DD & END_TIME_HH:MM:SS", //this is a placeholder
              "timeZone": "TIMEZONE" //this is a placeholder
          },
          "location":{
              "displayName": "LOCATION_NAME" //this is a placeholder; it can be  event location or a meeting link for a virtual meeting
          },
          "attendees": [ //you cabn have multiple attendees
            {
              "emailAddress": {
                "address":"ATTENDEE_1_Email_Address", //this is a placeholder
                "name": "ATTENDEE_1_Name" //this is a placeholder
              },
              "type": "Required / Optional" //select one
            },
        {
              "emailAddress": {
                "address":"ATTENDEE_2_Email_Address", //this is a placeholder
                "name": "ATTENDEE_2_Name" //this is a placeholder
              },
              "type": "Required / Optional" //select one
            },
          ]
        }
        
    6. Save your changes.

    Was this page helpful?

    Integrate with Microsoft Dynamics 365Integrate with SharePoint
    youtubelinkedin
    Powered by Mintlify
    Assistant
    Responses are generated using AI and may contain mistakes.