Skip to main content
October 13, 2023
Question

Outlook Integrations

  • October 13, 2023
  • 3 replies
  • 0 views

Using integrations, I am retrieving outlook emails, but only receiving 255 characters rather than the whole body. Is there any way to get the whole email body?

3 replies

mathieud0001
October 14, 2023

How are you retrieving emails from Outlook - you are using the Graph API directly or are you using the Mail Poller plugin?

October 16, 2023

We are using Graph API through Appian Integration object.

anirudhn2921
October 16, 2023

The message body in the Search API endpoint is limited to 255 characters. To work around this limitation, you can make two separate API calls. First, retrieve the "hitid" property of the message in one call(using search endpoint). Then, use this "hitid" in a second call to the message endpoint to obtain the complete message body.