I am trying to run a filter on the dataset which is private in Socrata. I have tried doing it through browser and using SoQL but it doesn't work.
https://xxxxx/resource/xxxx-xxxx.json?$where=product like '%test%'
When I am making request to the following URL in browser. It is returning me all the products without any filtering. But it occasionally throws an exception
{
"code" : "query.compiler.malformed",
"error" : true,
"message" : "Error, could not parse SoQL query \"select * from #xxx-xxxx where product like '%new%'\"",
"data" : {
"query" : "select * from #tatp-bcb2 where product like '%new%'"
}
}
It is private dataset so I am unable to access specific API docs from export menu. Is it because the dataset is private or something to do with the actual API ?