I have a table called Request
with an entry with requestId
F92G3W
.
When I do
curl -H "Content-Type: application/json" -X "GET" -v "https://api.backendless.com/v1/data/Request?where=requestId%3DF92G3W"
or Request?where=requestId=F92G3W
(with equal sign)
I get the error {"code":1017,"message":"Invalid where clause. Not Existing columns: F92G3W"}
.
But when I do the same curl with https://api.backendless.com/v1/data/Request
, I get back a list of results including the entry with requestId
F92G3W
.
Why am I getting this error?