You are not logged in.
Pages: 1
I' m trying to search through Caption meta content using the Search.AdvancedSearch, here is my below URL to test on browser :
/api/1.0/Search.AdvancedSearch(query:{fieldId:111, conditionId:0,value:'test'})
But unfortunately its returning this error : "The action 'advanced search is not defined in the interface." I am wondering what i missed to add in the URL ? Please help me.
Offline
Hi Ashraf,
The brackets syntax you are using to specify parameters is not supported, and the JSON must be more strictly formed. The following is a valid way of expressing this query:
/api/1.0/Search.AdvancedSearch/query=[{"fieldId":"111","conditionId":"0","value":"test"}]
Dominic
Offline
Works! Thanks Dominic
Cheers
Offline
Pages: 1