QuestionQ17

Integration and API Automation

To retrieve every Outlook email that contains the word "UiPath" in its subject, which filtering property and filter schema should a developer use?

  • A Property: FilterByMessageIds -Schema: "@SQL=""urn:schemas:httpmail:subject'"' like 'UiPath%'"
  • B Property: Filter -Schema: "@SQL=""urn:schemas:httpmail:subject"" like 'UiPath%'"
  • C Property: Filter -Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"
  • D Property: FilterByMessageIds -Schema: "@SQL=""urn:schemas:httpmail:subject"" like '%UiPath%'"
Explanation

The Filter property accepts DASL query expressions for Outlook messages. Matching a word anywhere in the subject uses @SQL="urn:schemas:httpmail:subject" like '%UiPath%'; the percent signs are wildcards on both sides. FilterByMessageIds is intended only to retrieve messages with specified message IDs.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!