I have already check the mod/quiz/db/services.php , but not able to find any api for the same.
Note : Quiz data like questions, answers details.
I have already check the mod/quiz/db/services.php , but not able to find any api for the same.
Note : Quiz data like questions, answers details.
Yes, if you are using moodle webservices, you can use mod_quiz_get_attempt_data
for get questions data. You can use a lot of other functions by this link.
Bellow is an example of usage:
http://yourwebsite.com/moodle/webservice/rest/server.php?moodlewsrestformat=json&wstoken=YOUR_TOKEN&wsfunction=mod_quiz_get_attempt_data&attemptid=1&page=0
You have to replace attemptid, wstoken and page. I hope this helps
If you don't know how to enable webservices in moodle platform, you just need to go this link.