Provenance
PublisherOutlook Email Parser
API basehttps://graph.microsoft.com/
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (OAuth)
Methods (4)
getEmailsWithAttachments
readSearch Outlook emails with attachments using sender, subject, date, and attachment filters.
Input schema
{ "type": "object", "properties": { "top": { "type": "number" }, "search": { "type": "string" }, "hasAttachmentsOnly": { "type": "boolean" }, "from": { "type": "string" }, "subject": { "type": "string" }, "receivedAfter": { "type": "string" }, "receivedBefore": { "type": "string" } }, "additionalProperties": false }parseEmailAttachments
unknownParse supported file attachments from a specific Outlook email.
Input schema
{ "type": "object", "properties": { "messageId": { "type": "string" }, "fileTypes": { "type": "array", "items": { "type": "string" } }, "maxFileSizeMB": { "type": "number" } }, "additionalProperties": false, "required": [ "messageId" ] }getAndParseEmails
readSearch Outlook emails and parse supported attachments using email and file filters.
Input schema
{ "type": "object", "properties": { "top": { "type": "number" }, "search": { "type": "string" }, "from": { "type": "string" }, "subject": { "type": "string" }, "receivedAfter": { "type": "string" }, "receivedBefore": { "type": "string" }, "fileTypes": { "type": "array", "items": { "type": "string" } }, "maxFileSizeMB": { "type": "number" } }, "additionalProperties": false }getEmailDetails
readRetrieve complete details for a specific Outlook email.
Input schema
{ "type": "object", "properties": { "messageId": { "type": "string" } }, "additionalProperties": false, "required": [ "messageId" ] }
