SlideShare a Scribd company logo
1 of 20
Download to read offline
API Driven
Development in
Moodle
Bharat Pareek
Dhawal Bargir
Mission: Improve Open Source UI & UX
Default Layout
Remui Layout
Next Challenge: Grading UX
Design Solution
By Pass: Without Changing Moodle core
Rapid
Grader
Front-end
Moodle
DB
Moodle
API
Wait, What’s an API?
Google
Maps
in Uber
Request : Start and End Location and Time
Response: Distance, Traffic, etc
When API plugin development is needed?
● Connecting to an external software
● When overriding existing feature does not give you the
required control.
Amazing Moodle API
Mobile Apps
Web Clients {....}
React
Angular
GET / POST
JSON / XML
API Gateway
API Clients
Food items
in order
Order placed
message
Current Grading Interface
Moodle
Edwiser RapidGrader Interface
Easily distinguish between
graded/non graded users
Easily navigate between questions
API Development in Moodle
External service description
Think it of like a file where we
need to register our APIs.
External functions
External functions are used to
create API endpoints
API Calls
Call the API endpoint and
process the response received.
03
01 02
Know more about it:
https://docs.moodle.org/dev/External_services_description#Service_discovery
https://docs.moodle.org/dev/External_functions_API#Overview
External Service description
Registering your API endpoint in db/services.php file of a Moodle plugin.
<?php
$functions = array(
'block_grader_get_quiz_questions' => array(
'classname' => block_graderexternalapi',
'methodname' => get_quiz_questions
)
);
External Functions
Methods which are stored in externallib.php that can be accessed by external programs like an API client.
/**
* Describes the structure of parameters for the function.
*/
public static function get_quiz_questions_parameters() {
return new external_function_parameters(
array (
'attemptid' => new external_value(PARAM_INT, 'Attempt ID.', VALUE_DEFAULT, 0),
)
);
}
/**
* Get attempt questions
**/
public static function get_quiz_questions($attemptid) {
// business logic
return $questions;
}
/**
* Describes the structure of the function return value.
*/
public static function get_quiz_questions_returns() {
new external_single_structure(
array(
'number' => new external_value(PARAM_INT, 'Question Number'),
'status' => new external_value(PARAM_RAW, 'Question Status')
)
)
}
API Endpoints
http://moodle.server/webservice/rest/server.php?wsfunction=get_quiz_questions
An API endpoint is a URL with some parameters.
&wstoken=SECURITYTOKEN;
Precautions you need to take?
Security
System monitoring
Thank you for Listening
Quiz to jog your memory http://edwiser.org/api-quiz
You win products from Edwiser
Any Questions?
Thank you!

More Related Content

What's hot

Industry-Standard Web Development Techniques for Angular
Industry-Standard Web Development Techniques for AngularIndustry-Standard Web Development Techniques for Angular
Industry-Standard Web Development Techniques for AngularJai Prakash Mishra
 
Rachna_Vadala_Resume_updated
Rachna_Vadala_Resume_updatedRachna_Vadala_Resume_updated
Rachna_Vadala_Resume_updatedRachna Vadala
 
Haridas_Resume_ASP.NET_MVC_5+_Yrs_Exp
Haridas_Resume_ASP.NET_MVC_5+_Yrs_ExpHaridas_Resume_ASP.NET_MVC_5+_Yrs_Exp
Haridas_Resume_ASP.NET_MVC_5+_Yrs_ExpHaridas R
 
Resume_Vinay_Sharma_Asp.Net
Resume_Vinay_Sharma_Asp.NetResume_Vinay_Sharma_Asp.Net
Resume_Vinay_Sharma_Asp.NetVinay Sharma
 
Shatrughna singh 2.9 years _of_experience
Shatrughna singh 2.9 years _of_experienceShatrughna singh 2.9 years _of_experience
Shatrughna singh 2.9 years _of_experienceShatrughna Singh
 
Deepak_Raghav Resume done
Deepak_Raghav Resume doneDeepak_Raghav Resume done
Deepak_Raghav Resume doneDeepak Raghav
 
Creativity and-skill-to-java-app-development
Creativity and-skill-to-java-app-developmentCreativity and-skill-to-java-app-development
Creativity and-skill-to-java-app-developmentDeepika Chaudhary
 
Ionic and Azure
Ionic and AzureIonic and Azure
Ionic and Azurelaloving
 
Rahul(1.7+ yr.expDotNet)
Rahul(1.7+ yr.expDotNet)Rahul(1.7+ yr.expDotNet)
Rahul(1.7+ yr.expDotNet)Rahul Jangir
 
Virendra-Mishra-Resume without SEBIZ
Virendra-Mishra-Resume without SEBIZVirendra-Mishra-Resume without SEBIZ
Virendra-Mishra-Resume without SEBIZVirendra Mishra
 
Build java-ee-applications-with-adf
Build java-ee-applications-with-adfBuild java-ee-applications-with-adf
Build java-ee-applications-with-adfAmit Sharma
 
Building a bot with an intent
Building a bot with an intentBuilding a bot with an intent
Building a bot with an intentAbhishek Sur
 
iOS-iPhone documentation
iOS-iPhone documentationiOS-iPhone documentation
iOS-iPhone documentationRaj Dubey
 

What's hot (20)

N.R
N.RN.R
N.R
 
Resume-Sudhanshu ASP.NET
Resume-Sudhanshu ASP.NETResume-Sudhanshu ASP.NET
Resume-Sudhanshu ASP.NET
 
Industry-Standard Web Development Techniques for Angular
Industry-Standard Web Development Techniques for AngularIndustry-Standard Web Development Techniques for Angular
Industry-Standard Web Development Techniques for Angular
 
ORACLE ADF training
ORACLE ADF trainingORACLE ADF training
ORACLE ADF training
 
Rachna_Vadala_Resume_updated
Rachna_Vadala_Resume_updatedRachna_Vadala_Resume_updated
Rachna_Vadala_Resume_updated
 
Haridas_Resume_ASP.NET_MVC_5+_Yrs_Exp
Haridas_Resume_ASP.NET_MVC_5+_Yrs_ExpHaridas_Resume_ASP.NET_MVC_5+_Yrs_Exp
Haridas_Resume_ASP.NET_MVC_5+_Yrs_Exp
 
SIVA_RESUME@2016-1(1)
SIVA_RESUME@2016-1(1)SIVA_RESUME@2016-1(1)
SIVA_RESUME@2016-1(1)
 
Resume_Vinay_Sharma_Asp.Net
Resume_Vinay_Sharma_Asp.NetResume_Vinay_Sharma_Asp.Net
Resume_Vinay_Sharma_Asp.Net
 
Shatrughna singh 2.9 years _of_experience
Shatrughna singh 2.9 years _of_experienceShatrughna singh 2.9 years _of_experience
Shatrughna singh 2.9 years _of_experience
 
Deepak_Raghav Resume done
Deepak_Raghav Resume doneDeepak_Raghav Resume done
Deepak_Raghav Resume done
 
Creativity and-skill-to-java-app-development
Creativity and-skill-to-java-app-developmentCreativity and-skill-to-java-app-development
Creativity and-skill-to-java-app-development
 
Amitre11feb
Amitre11febAmitre11feb
Amitre11feb
 
Resume
ResumeResume
Resume
 
Ionic and Azure
Ionic and AzureIonic and Azure
Ionic and Azure
 
Rahul(1.7+ yr.expDotNet)
Rahul(1.7+ yr.expDotNet)Rahul(1.7+ yr.expDotNet)
Rahul(1.7+ yr.expDotNet)
 
Virendra-Mishra-Resume without SEBIZ
Virendra-Mishra-Resume without SEBIZVirendra-Mishra-Resume without SEBIZ
Virendra-Mishra-Resume without SEBIZ
 
udhay
udhayudhay
udhay
 
Build java-ee-applications-with-adf
Build java-ee-applications-with-adfBuild java-ee-applications-with-adf
Build java-ee-applications-with-adf
 
Building a bot with an intent
Building a bot with an intentBuilding a bot with an intent
Building a bot with an intent
 
iOS-iPhone documentation
iOS-iPhone documentationiOS-iPhone documentation
iOS-iPhone documentation
 

Similar to API-Driven Development in Moodle

CV 5 years exp. in UI Front End Developer
CV  5 years exp. in UI Front End DeveloperCV  5 years exp. in UI Front End Developer
CV 5 years exp. in UI Front End DeveloperPUSHPRAJ MISHRA
 
Joomla REST API - JoomlaDay Bangkok 2014
Joomla REST API - JoomlaDay Bangkok 2014Joomla REST API - JoomlaDay Bangkok 2014
Joomla REST API - JoomlaDay Bangkok 2014Ashwin Date
 
Ranjeet Mishra_JAVA_3+year exp
Ranjeet Mishra_JAVA_3+year expRanjeet Mishra_JAVA_3+year exp
Ranjeet Mishra_JAVA_3+year expRanjeet Mishra
 
9 Best Tools to Leverage for Progressive Web App Development
9 Best Tools to Leverage for Progressive Web App Development9 Best Tools to Leverage for Progressive Web App Development
9 Best Tools to Leverage for Progressive Web App Developmentcodecraftcrew
 
Waqar Ahmed CV
Waqar Ahmed CVWaqar Ahmed CV
Waqar Ahmed CVSSUET
 
Biswajit-Resume-PHP-Drupal
Biswajit-Resume-PHP-DrupalBiswajit-Resume-PHP-Drupal
Biswajit-Resume-PHP-DrupalBiswajit Jena
 
Shivam Sharma resume(.Net Developer)
Shivam Sharma resume(.Net Developer)Shivam Sharma resume(.Net Developer)
Shivam Sharma resume(.Net Developer)Shivam Sharma
 
SHIVRAJSresumeSyracyse (1)
SHIVRAJSresumeSyracyse (1)SHIVRAJSresumeSyracyse (1)
SHIVRAJSresumeSyracyse (1)shivraj srinivas
 
Developing Apps with Azure AD
Developing Apps with Azure ADDeveloping Apps with Azure AD
Developing Apps with Azure ADSharePointRadi
 
{Re}designing a Developer Portal
{Re}designing a Developer Portal{Re}designing a Developer Portal
{Re}designing a Developer PortalPronovix
 

Similar to API-Driven Development in Moodle (20)

CV 5 years exp. in UI Front End Developer
CV  5 years exp. in UI Front End DeveloperCV  5 years exp. in UI Front End Developer
CV 5 years exp. in UI Front End Developer
 
Resume_Ravichandra Thota
Resume_Ravichandra ThotaResume_Ravichandra Thota
Resume_Ravichandra Thota
 
Joomla REST API - JoomlaDay Bangkok 2014
Joomla REST API - JoomlaDay Bangkok 2014Joomla REST API - JoomlaDay Bangkok 2014
Joomla REST API - JoomlaDay Bangkok 2014
 
Javatraining
JavatrainingJavatraining
Javatraining
 
BhaskarCV
BhaskarCVBhaskarCV
BhaskarCV
 
Ranjeet Mishra_JAVA_3+year exp
Ranjeet Mishra_JAVA_3+year expRanjeet Mishra_JAVA_3+year exp
Ranjeet Mishra_JAVA_3+year exp
 
9 Best Tools to Leverage for Progressive Web App Development
9 Best Tools to Leverage for Progressive Web App Development9 Best Tools to Leverage for Progressive Web App Development
9 Best Tools to Leverage for Progressive Web App Development
 
Waqar Ahmed CV
Waqar Ahmed CVWaqar Ahmed CV
Waqar Ahmed CV
 
Biswajit-Resume-PHP-Drupal
Biswajit-Resume-PHP-DrupalBiswajit-Resume-PHP-Drupal
Biswajit-Resume-PHP-Drupal
 
Bharat
BharatBharat
Bharat
 
Shivam Sharma resume(.Net Developer)
Shivam Sharma resume(.Net Developer)Shivam Sharma resume(.Net Developer)
Shivam Sharma resume(.Net Developer)
 
MohitKumarGupta_Resume
MohitKumarGupta_ResumeMohitKumarGupta_Resume
MohitKumarGupta_Resume
 
Shailendr Singh
Shailendr SinghShailendr Singh
Shailendr Singh
 
Sravan Kumar Resume
Sravan Kumar ResumeSravan Kumar Resume
Sravan Kumar Resume
 
J developer, oracle adf introduction
J developer, oracle adf   introductionJ developer, oracle adf   introduction
J developer, oracle adf introduction
 
Resume_Abhishek_3years
Resume_Abhishek_3yearsResume_Abhishek_3years
Resume_Abhishek_3years
 
ResumeWithPassport
ResumeWithPassportResumeWithPassport
ResumeWithPassport
 
SHIVRAJSresumeSyracyse (1)
SHIVRAJSresumeSyracyse (1)SHIVRAJSresumeSyracyse (1)
SHIVRAJSresumeSyracyse (1)
 
Developing Apps with Azure AD
Developing Apps with Azure ADDeveloping Apps with Azure AD
Developing Apps with Azure AD
 
{Re}designing a Developer Portal
{Re}designing a Developer Portal{Re}designing a Developer Portal
{Re}designing a Developer Portal
 

Recently uploaded

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

API-Driven Development in Moodle

  • 2. Mission: Improve Open Source UI & UX
  • 7. By Pass: Without Changing Moodle core Rapid Grader Front-end Moodle DB Moodle API
  • 8. Wait, What’s an API? Google Maps in Uber Request : Start and End Location and Time Response: Distance, Traffic, etc
  • 9. When API plugin development is needed? ● Connecting to an external software ● When overriding existing feature does not give you the required control.
  • 10. Amazing Moodle API Mobile Apps Web Clients {....} React Angular GET / POST JSON / XML API Gateway API Clients Food items in order Order placed message
  • 12. Edwiser RapidGrader Interface Easily distinguish between graded/non graded users Easily navigate between questions
  • 13. API Development in Moodle External service description Think it of like a file where we need to register our APIs. External functions External functions are used to create API endpoints API Calls Call the API endpoint and process the response received. 03 01 02 Know more about it: https://docs.moodle.org/dev/External_services_description#Service_discovery https://docs.moodle.org/dev/External_functions_API#Overview
  • 14. External Service description Registering your API endpoint in db/services.php file of a Moodle plugin. <?php $functions = array( 'block_grader_get_quiz_questions' => array( 'classname' => block_graderexternalapi', 'methodname' => get_quiz_questions ) );
  • 15. External Functions Methods which are stored in externallib.php that can be accessed by external programs like an API client. /** * Describes the structure of parameters for the function. */ public static function get_quiz_questions_parameters() { return new external_function_parameters( array ( 'attemptid' => new external_value(PARAM_INT, 'Attempt ID.', VALUE_DEFAULT, 0), ) ); } /** * Get attempt questions **/ public static function get_quiz_questions($attemptid) { // business logic return $questions; } /** * Describes the structure of the function return value. */ public static function get_quiz_questions_returns() { new external_single_structure( array( 'number' => new external_value(PARAM_INT, 'Question Number'), 'status' => new external_value(PARAM_RAW, 'Question Status') ) ) }
  • 16. API Endpoints http://moodle.server/webservice/rest/server.php?wsfunction=get_quiz_questions An API endpoint is a URL with some parameters. &wstoken=SECURITYTOKEN;
  • 17. Precautions you need to take? Security System monitoring
  • 18. Thank you for Listening Quiz to jog your memory http://edwiser.org/api-quiz You win products from Edwiser