Hi I am having a bit of trouble with sdata. I have been able to see a schema using http://localhost:5493/sdata/accounts50/GCRM/-/$schema. When I try to view accounts etc, through something like the following localhost:5493/sdata/accounts50/GCRM/-/accounts('ACCOUNTCODE') I get an error errorResourceKindNotFoundUnable to locate the specified object 'accounts50/GCRM/-/accounts'
I have tried several variations of the url based on this resource http://sage.github.io/SData-2.0/
Am I missing I missing some configuration? I have base the url on the details provided by the Sage.SData.Service.Config.UI.exe utility. Any help is appreciated.
this is the one I tried should get you started
if want to do a query you simple add this to the end
?select=name&count=3
and if you want use json just add this&format=json
so your full string would read ashttp://localhost:5493/sdata/accounts50/GCRM/-/tradingAccounts?select=name&count=3&format=json
hope this helps