Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Back to post

Revisions 3

one year ago
Vinay Mistry
23 × 2 Administrator
Symphony REST API Search Rooms Query Problem
Symphony REST API Search Rooms Query Problem
Hi, I have a question on writing the "query" params in Search Rooms request. Im using C# httpclient, and I want to search all chat rooms that a certain member in but I dont know what should I put into the query (meaning that I dont want to be limited to chat room names and certainly I can't put nothing in it). Please help ``` var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri("https://your-pod-subdomain.symphony.com/pod/v3/room/search?skip=0&limit=50"), Headers = { { "accept", "application/json" }, { "sessionToken", "123456" }, }, Content = new StringContent("{\"member\":{\"id\":123456789},\"query\":\"What should I put here?\"}") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } } }; ```
Hi, I have a question on writing the "query" params in Search Rooms request. Im using C# httpclient, and I want to search all chat rooms that a certain member in but I dont know what should I put into the query (meaning that I dont want to be limited to chat room names and certainly I can't put nothing in it). Please help ``` var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri("https://your-pod-subdomain.symphony.com/pod/v3/room/search?skip=0&limit=50"), Headers = { { "accept", "application/json" }, { "sessionToken", "123456" }, }, Content = new StringContent("{\"member\":{\"id\":123456789},\"query\":\"What should I put here?\"}") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } } }; ```
#rooms #symphony #search #obo
#rooms #symphony #search
one year ago
Symphony REST API Search Rooms Query Problem
Symphony REST API Search Rooms Query Problem
Hi, I have a question on writing the "query" params in Search Rooms request. Im using C# httpclient, and I want to search all chat rooms that a certain member in but I dont know what should I put into the query (meaning that I dont want to be limited to chat room names and certainly I can't put nothing in it). Please help ``` var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri("https://your-pod-subdomain.symphony.com/pod/v3/room/search?skip=0&limit=50"), Headers = { { "accept", "application/json" }, { "sessionToken", "123456" }, }, Content = new StringContent("{\"member\":{\"id\":123456789},\"query\":\"What should I put here?\"}") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } } }; ```
Hi, I have a question on writing the "query" params in Search Rooms request. Im using C# httpclient, and I want to search all chat rooms that a certain member in but I dont know what should I put into the query (meaning that I dont want to be limited to chat room names and certainly I can't put nothing in it). Please help ``` var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri("https://your-pod-subdomain.symphony.com/pod/v3/room/search?skip=0&limit=50"), Headers = { { "accept", "application/json" }, { "sessionToken", "123456" }, }, Content = new StringContent("{\"member\":{\"id\":123456789},\"query\":\"What should I put here?\"}") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } } }; ```
#rooms #symphony #search
#
one year ago
Original
Symphony REST API Search Rooms Query Problem

Hi, I have a question on writing the "query" params in Search Rooms request. Im using C# httpclient, and I want to search all chat rooms that a certain member in but I dont know what should I put into the query (meaning that I dont want to be limited to chat room names and certainly I can't put nothing in it). Please help ``` var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri("https://your-pod-subdomain.symphony.com/pod/v3/room/search?skip=0&limit=50"), Headers = { { "accept", "application/json" }, { "sessionToken", "123456" }, }, Content = new StringContent("{\"member\":{\"id\":123456789},\"query\":\"What should I put here?\"}") { Headers = { ContentType = new MediaTypeHeaderValue("application/json") } } }; ```
#