The documentation states:
Query string for prefix matching searches. Should be of the form "key":"value" where key can be "email", "firstName" or "lastName".
I've tried:
directory.users().list().setQuery("email:" + email).execute()
directory.users().list().setQuery("\"email\":\"" + email + "\"").execute()
directory.users().list().setQuery("email:\"" + email + "\"").execute()
They all return a 400 : Bad Request response. How do I properly filter on the email address? Thank you!