@slates-integrations/microsoft-outlook 0.2.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +3 -0
- package/dist/sourcemap-register.cjs +1 -0
- package/docs/SPEC.md +122 -0
- package/logo.svg +2 -0
- package/package.json +26 -0
- package/slate.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# <img src="https://provider-logos.metorial-cdn.com/Outlook%20SVG%20Icon.svg" height="20"> Outlook
|
|
2
|
+
|
|
3
|
+
Send, read, reply to, forward, and manage email messages in user mailboxes. Organize messages into folders, apply categories, flags, and importance levels. Manage file and item attachments. Create, update, delete, and respond to calendar events and meetings. Find available meeting times, manage attendees, handle recurrence, and work with shared or delegated calendars. Create, read, update, and delete contacts, organize them into contact folders, and manage contact photos. Manage tasks and task lists via Microsoft To Do, including due dates, reminders, recurrence, and checklist items. Subscribe to webhook notifications for changes to messages, calendar events, and contacts. Support for Focused Inbox, @-mentions, mail tips, send-on-behalf, and send-as capabilities.
|
|
4
|
+
|
|
5
|
+
## Tools
|
|
6
|
+
|
|
7
|
+
### Create Contact
|
|
8
|
+
|
|
9
|
+
Create a new contact in the authenticated user's contact book. Supports all standard contact fields including name, email, phone numbers, company info, and addresses. Optionally specify a contact folder.
|
|
10
|
+
|
|
11
|
+
### Create Draft
|
|
12
|
+
|
|
13
|
+
Create a draft email message in the Drafts folder. The draft can later be sent using the **Manage Email** tool or edited further. Useful for composing messages that need review before sending.
|
|
14
|
+
|
|
15
|
+
### Create Calendar Event
|
|
16
|
+
|
|
17
|
+
Create a new calendar event or meeting. Supports attendees, location, online meeting generation, recurrence patterns, reminders, and more. When attendees are specified, meeting invitations are automatically sent.
|
|
18
|
+
|
|
19
|
+
### Create Task
|
|
20
|
+
|
|
21
|
+
Create a new task in a Microsoft To Do task list. Supports title, body, due date, reminder, importance, status, categories, and recurrence.
|
|
22
|
+
|
|
23
|
+
### Find Meeting Times
|
|
24
|
+
|
|
25
|
+
Find available meeting time slots based on attendee availability and time constraints. Suggests optimal times when all or most attendees are free. Useful for scheduling meetings with multiple participants.
|
|
26
|
+
|
|
27
|
+
### Get Contact
|
|
28
|
+
|
|
29
|
+
Retrieve the full details of a specific contact by ID, including all email addresses, phone numbers, addresses, company information, and personal notes.
|
|
30
|
+
|
|
31
|
+
### Get Calendar Event
|
|
32
|
+
|
|
33
|
+
Retrieve the full details of a specific calendar event by its ID, including the complete body, attendees with response status, recurrence pattern, and online meeting information.
|
|
34
|
+
|
|
35
|
+
### Get Email
|
|
36
|
+
|
|
37
|
+
Retrieve the full details of a specific email message by its ID, including the complete body content, all recipients, and attachment metadata.
|
|
38
|
+
|
|
39
|
+
### List Calendars
|
|
40
|
+
|
|
41
|
+
List all calendars available to the authenticated user, including the default calendar and any additional calendars for work, family, etc. Returns calendar metadata and permission details.
|
|
42
|
+
|
|
43
|
+
### List Contacts
|
|
44
|
+
|
|
45
|
+
List contacts from the authenticated user's contact book. Supports filtering by folder, searching by keyword, and pagination. Returns contact summary information.
|
|
46
|
+
|
|
47
|
+
### List Calendar Events
|
|
48
|
+
|
|
49
|
+
List calendar events from the authenticated user's calendar. Supports filtering by date range (calendar view), specific calendar, and OData filters. When **startDateTime** and **endDateTime** are provided, uses the calendarView endpoint which expands recurring events into individual occurrences.
|
|
50
|
+
|
|
51
|
+
### List Mail Folders
|
|
52
|
+
|
|
53
|
+
List mail folders in the authenticated user's mailbox. Returns built-in folders (Inbox, Drafts, Sent Items, etc.) and custom folders with item counts. Optionally list child folders of a specific parent folder.
|
|
54
|
+
|
|
55
|
+
### List Emails
|
|
56
|
+
|
|
57
|
+
List email messages from the authenticated user's mailbox. Supports filtering by folder, searching by keyword, ordering, and pagination. Use OData filter syntax for advanced filtering (e.g., \
|
|
58
|
+
|
|
59
|
+
### List Task Lists
|
|
60
|
+
|
|
61
|
+
List all Microsoft To Do task lists for the authenticated user. Returns the list name, ID, ownership, and sharing status. Task lists organize tasks by category or purpose.
|
|
62
|
+
|
|
63
|
+
### List Tasks
|
|
64
|
+
|
|
65
|
+
List tasks from a specific Microsoft To Do task list. Supports filtering and pagination. Returns task summaries with status, due dates, and importance.
|
|
66
|
+
|
|
67
|
+
### Manage Contact
|
|
68
|
+
|
|
69
|
+
Update or delete an existing contact. Use **action** to specify the operation. For updates, only the provided fields will be changed.
|
|
70
|
+
|
|
71
|
+
### Manage Calendar Event
|
|
72
|
+
|
|
73
|
+
Update, respond to, or delete a calendar event. Use **action** to specify the operation: **update** to modify event properties, **respond** to accept/tentatively accept/decline the event, or **delete** to remove it.
|
|
74
|
+
|
|
75
|
+
### Manage Email
|
|
76
|
+
|
|
77
|
+
Perform actions on an existing email message: reply, reply all, forward, move to a folder, update properties (read status, importance, categories, flag), or delete. Use the **action** field to specify the operation.
|
|
78
|
+
|
|
79
|
+
### Manage Task
|
|
80
|
+
|
|
81
|
+
Update or delete a Microsoft To Do task. Use **action** to specify the operation. For updates, only the provided fields will be changed. Supports changing title, status, due date, importance, and more.
|
|
82
|
+
|
|
83
|
+
### Send Email
|
|
84
|
+
|
|
85
|
+
Send an email message from the authenticated user's mailbox. Supports recipients (to, cc, bcc), HTML or plain text body, importance level, reply-to addresses, and file attachments. The message is saved to Sent Items by default.
|
|
86
|
+
|
|
87
|
+
## License
|
|
88
|
+
|
|
89
|
+
This integration is licensed under the [FSL-1.1](https://github.com/metorial/metorial-platform/blob/dev/LICENSE).
|
|
90
|
+
|
|
91
|
+
<div align="center">
|
|
92
|
+
<sub>Built with ❤️ by <a href="https://metorial.com">Metorial</a></sub>
|
|
93
|
+
</div>
|