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?
Discussion posts and replies are publicly visible
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.