Is there a way to search through the content of messages?
-
Is there a way to search for a message containing a certain word or phrase? The search box doesn’t seem to support this. I need to quantify something and searching the content of messages would be the easiest way to do that.
Thank you!
-
I ended up just dumping them all to a spreadsheet using the API so I’m good to go. For those who have the same issue in the future, here’s how I did it:
-
Send a GET request to:
https://api.myvr.com/v1/inquiry-messages/ -
Add the necessary parameters. In my case, I used:
- limit=1000
- startDate=2019-01-01
Example:
GET /v1/inquiry-messages/?limit=1000&startDate=2019-01-01 HTTP/1.1 Host: api.myvr.com Authorization: Bearer [API_KEY]
-