Hello Friends,
I am using Silverstripe 3 and fount Restful server class is missing in SS3,So i installed the Restful server module for SS3,
In my DataObject class i have enabled the Resetful service like
static $api_access = array(
'view' => array('data'),
);
But when i try to use the link domain.com/api/v1/tablename/?xyz=123 ,it returns
<DataList totalSize="5">
</DataList> ,bu not the recoreds which i want i.e data form the tablename.
Any help appriciated....
Thank You