I have a class that I want to access over REST:
<?php
class MyClass extends DataObject {
static $db = array(
'Title'=>'Text',
'Published'=>'Boolean'
);
static $api_access = true;
function canEdit() { return true; }
function canView() { return true; }
function canCreate() { return true; }
function foo() {
return 'foo';
}
}
So I can do this totally fine:
http://localhost/api/v1/MyClass/1/
But how do I access a function over REST? I want to be able to access:
http://localhost/api/v1/MyClass/1/foo
But I don't know how. Is this possible?
Cheers,
Barry.