Need Help! REST APIs Using API Express
I've spent the entire day reading and trying to figure this out. I've solved a lot of my issues - mostly thank to this video (https://blog.appery.io/2015/06/video-...)
But I'm desperately stuck and need help please!
Using the API Express features, I've setup a connection to my MySQL DB. No Problem. I have the API working, no problem.
But for the life of me, cannot get the where query to work! Nothing I've read and tried has worked.
How can I pass the 'where' variable back in the request as is shown in the documentation??
https://appery.io/apiexpress-api/rest...
Tried this too - just throws an error:
You can also test the service; open the service and switch to the Test tab. Paste the following for the where parameter:
{"States":{"$regex":"C", "$options":"i"}}
Click “Test.”
The above will return all states that start with letter C or c. “$options”:”i” is what specifies the query to ignore the case.
Please help