outlook.getMailFolder returns one Outlook mail folder and its message counts.
Example
automations/outlook-get-mail-folder.automation.ts
Inputs
Pass{ folder: "Customers" }. The optional second argument { account } selects a Microsoft binding.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns one Outlook mail folder and its message counts.
outlook.getMailFolder returns one Outlook mail folder and its message counts.
import { automation } from "automate.ax"
import { outlook } from "automate.ax/outlook"
export default automation("Get mail folder", () => {
outlook.getMailFolder({ folder: "Customers" })
})
{ folder: "Customers" }. The optional second argument { account } selects a Microsoft binding.