Subject |
query=(subject:"rainbow") |
Searches for conversation subjects that contain the word "rainbow" |
|
query=(subject:"have a question") |
Searches for conversation subjects that contain the phrase "have a question" (not case sensitive) |
|
query=(subject:"coffee" OR subject:"tea") |
Searches for conversations with a subject that contain the word "coffee" or the word "tea" |
|
query=(subject:"coffee tea") |
Searches for conversation subjects that contain the word "coffee" and the word "tea" in no particular order |
Tags |
query=(tag:"carrots") |
Searches for conversations that have the tag "carrots" |
|
query=(tag:"dogs love carrots") |
Searches for conversations that have the tag "dogs love carrots" |
|
query=(tag:"dogs" OR tag:"carrots") |
Searches for conversations that are tagged with either "dogs" or "carrots" |
Mailbox |
query=(mailboxName:"Orders") |
Searches the "Orders" mailbox (case sensitive) |
|
query=(mailboxid:100) |
Searches the mailbox with an id of 100 |
Customer |
query=(customerIds:xxxxxxx) |
Returns conversations (across all mailboxes) belonging to the given customer |
Number |
query=(number:1234) |
Searches for conversation #1234 |
Id |
query=(id:123456) |
Searches for the unique conversation ID (before the conversation number in the URL) |
Assigned |
query=(assigned:"spock") |
Searches for conversations assigned to Spock |
Attachment |
query=(attachment:true) |
Searches for conversations with attachments |
Unassigned |
query=(assigned:"Unassigned") |
Searches for unassigned conversations |
Body |
query=(body:"what a beautiful day") |
Searches conversation threads for the phrase, "what a beautiful day" |
|
query=(body:"what a day" OR body:"how about tomorrow") |
Searches conversation threads for the phrase, "what a day" or "how about tomorrow" |
Status |
query=(status:active) |
Searches conversations that have a status of active. Active, Pending, Closed and Spam work here. |
|
query=(status:active OR status:pending) |
Searches conversations that have a status of active or pending |
Modified At |
query=(modifiedAt:[2014-02-27T00:00:00Z TO *]) |
Searches conversations that have been modified since 2014-02-27 |
|
query=(modifiedAt:[2014-02-27T00:00:00Z TO 2014-02-27T23:59:59Z]) |
Searches conversations that were modified on 2014-02-27 |
|
query=(modifiedAt:[NOW-1HOUR]) |
Searches conversations that were modified in the last hour |
|
query=(modifiedAt:[2013-01-01T00:00:00Z/YEAR]) |
Searches conversations that were modified in 2013 |
Created At |
query=(createdAt:[2014-02-27T00:00:00Z TO *]) |
Searches conversations that have been created since 2014-02-27 |
|
query=(createdAt:[2014-02-27T00:00:00Z TO 2014-02-27T23:59:59Z]) |
Searches conversations that were created on 2014-02-27 |
|
query=(createdAt:[NOW-1HOUR]) |
Searches conversations that were created in the last hour |
|
query=(createdAt:[2013-01-01T00:00:00Z/YEAR]) |
Searches conversations that were created in 2013 |
Email |
query=(email:john@appleseed.com) |
Searches conversations where john@appleseed.com emails is either in to, cc, bcc fields or it's one of the emails
in a customer profile. |
|
query=(email:(john@appleseed.com OR vbear@mywork.com)) |
Searches conversations using the fields mentioned above, but returns results for multiple emails or customers |
Combined |
query=(assigned:"spock" AND status:active) |
Searches conversations that are assigned to Spock and have a status of active |
|
query=(mailbox:"Support" AND tag:"carrots") |
Searches conversations in the Support mailbox that have the tag "carrots" |