Reputation: 53
I have installed modules Services
, Services Entity
, Services Entity Reference
, REST Server
. My endpoint is api
, and I have webform
called Feedback
. I can retrieve webform
calling URL http://mysite/api/entity_node/999.json
. But I have no idea how to get submissions from API http://mysite/node/999/webform-results
. Is it possible at all?
Upvotes: 2
Views: 1357
Reputation: 11
Have a look at this link https://drupal.org/project/webform_service.
Then it is possible to get results by -
/api/webform/[webform_uuid]/submissions
Upvotes: 1