Hi All,
I need to integrate outlook calendar with our erpnext how can be done any advise please
Thanks in Advance
avc
March 20, 2025, 6:28pm
2
Hi @satyamsathya978 :
Check this. Depending on your requirements, you can use webhooks, create custom app and call Microsoft365 API or consider third party automate systems like n8n
Use Outlook calendar to schedule meetings, manage emails and contacts, organize your time, and collaborate all in one place on the web, mobile, or desktop.
Check how Google Calendar is integrated on Framework.
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import json
import frappe
from frappe import _
from frappe.contacts.doctype.contact.contact import get_default_contact
from frappe.desk.doctype.notification_settings.notification_settings import (
is_email_notifications_enabled_for_type,
)
from frappe.desk.reportview import get_filters_cond
from frappe.model.document import Document
from frappe.utils import (
add_days,
add_months,
cint,
cstr,
date_diff,
This file has been truncated. show original
Hope this helps.