I'm using Ruby on Rails and Office 365 REST API to get messages with $search params. My request look like that
https://outlook.office.com/api/v1.0/me/folders/inbox/messages?$search="oundation"
This request can not search emails contain "Foundation", it just can find emails have exactly "oundation" word. I want to search all emails have words contain "oundation" like "Foundation", "Soundation"... oundation .... Could you help me? Thank you very much!
$search="%oundation%"
, got nothing . If$search=%oundation%
, I got"message": "Syntax error: character '%' is not valid at position 0 in '%oundation%'."
– Hom nom nom nom ...