Note:

This site is no longer used and is in read-only mode. Instead please go to our new Moodle Developer Resource site.

Web services API Changes: Difference between revisions

From MoodleDocs
m Text replacement - "</code>" to "</syntaxhighlight>"
Note about plan not to migrate this page to the new developer resources. See template for more info.
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Template:WillNotMigrate}
{{Moodle_2.5}}
{{Moodle_2.5}}
{{obsolete}}
{{obsolete}}
Line 10: Line 11:
Added optional parameter:  
Added optional parameter:  
<br/>
<br/>
<code php>
<syntaxhighlight lang="php">
'returngroups' => new external_value(PARAM_BOOL, 'return associated groups', VALUE_DEFAULT, 0)
'returngroups' => new external_value(PARAM_BOOL, 'return associated groups', VALUE_DEFAULT, 0)
</syntaxhighlight>
</syntaxhighlight>
Line 16: Line 17:
Added optional return value:
Added optional return value:
<br/>
<br/>
<code php>
<syntaxhighlight lang="php">
'groups' => new external_multiple_structure(
'groups' => new external_multiple_structure(
   new external_single_structure(
   new external_single_structure(

Latest revision as of 06:58, 31 December 2022

{{Template:WillNotMigrate} Moodle 2.5


Warning: This page is no longer in use. The information contained on the page should NOT be seen as relevant or reliable.


Please, check the upgrade.txt files in the different Moodle subsystem and plugins for API changes.

This page lists all API changes that happened in Moodle web service API. When this page has been created, Moodle 2.5 work was already started for a while. So take in consideration that this listing will be exhaustive starting from 2.6. This list focus on existing functions (modified/deprecated). For the list of newly added function, see the Web services Roadmap.

2.4 to 2.5

  • MDL-36541 - get_groupings can now return groups related to the grouping.

Added optional parameter:

'returngroups' => new external_value(PARAM_BOOL, 'return associated groups', VALUE_DEFAULT, 0)


Added optional return value:

'groups' => new external_multiple_structure(
  new external_single_structure(
    array(
      'id' => new external_value(PARAM_INT, 'group record id'),
      'courseid' => new external_value(PARAM_INT, 'id of course'),
      'name' => new external_value(PARAM_TEXT, 'multilang compatible name, course unique'),
      'description' => new external_value(PARAM_RAW, 'group description text'),
      'descriptionformat' => new external_format_value('description'),
      'enrolmentkey' => new external_value(PARAM_RAW, 'group enrol secret phrase')
  )
),
  • MDL-30070 - Get, create, delete, block, unblock, search contacts.

See also