Import and delete functions from API
by Luis Oliveira. Hi! I'm using the Moodle 3.0 Web Service API with XML-RPC protocol and there're two functions that don't work as expected: core_course_delete_courses and core_course_import_course....
View ArticleRe: Import and delete functions from API
by Luis Oliveira. Well, I finally did it right, I've changed for this:$courseids = array(10);But the import function still doesn't work.
View ArticleRe: Listing user's courses: errorcoursecontextnotvalid
by Keerthana Venkat. Thank you for the post
View ArticleGet final grades without User ID
by Dietmar Grasböck. Hi,I would like to send all final grades of a course from moodle to a HR portal. (we use moodle 2.9, 4000 users, approx. 30 courses)In the API documentation there are some...
View ArticleRe: Get final grades without User ID
by Olumuyiwa Taiwo. The only argument required by the core_grades_get_grades API call is the course ID - which seems to be exactly what you want.The Web Services API documentation is at...
View Articlecore_user_get_users_by_field error: Calling parameters do not match signature...
by Francois J. Hi,I was wondering if someone could kindly help me with the core_user_get_users_by_field web service function.After various intents, I stumble upon this error: "Calling parameters do...
View ArticleAllow guest access with WS
by Paolo Tramonti. Hi, anyone knows if there is a way with web services to set the option "allow guest access" in a course, to allow access without authentication?I don't see this option in the...
View ArticleHow to get Assignment Unsubmitted Students
by SrinuvasReddy P. Hi Everyone.I am getting Assignment Submitted Students List using mod_assign_get_submissions web services but How to get Assignment Unsubmitted Students Using Web Services Functions
View ArticleAdd Header elements for authentication
by Manikandan Shanmugam. Hi All,I need to add Basic Authentication on HTTP Header to logon to SAP Cloud Application. the Document shared by SAP has below.Header:AuthorizationPossible Value:Basic...
View ArticleCall Rest Api With C#
by Omar Guerrero. This is an example in Console with C# to how to call the api of moodle with only the class and reflectionusing System;using System.Collections.Generic;using System.IO;using...
View ArticleCreate Web Service to register new user from android app.
by Dipak Mandal. I want to create web service for android that will register new user, which web service should I use?
View ArticleRe: Incorrect access detected, this server may be accessed only through...
by RabNawaz Panhyar. Hello everyone!Please help me, ( i have tried my best to present issue in summarized way )I have installed Moodle 3.0.1+ on windows server with IIS8 and is locally hosted. The...
View ArticleRe: Incorrect access detected, this server may be accessed only through...
by Usman Asar. Rabnawaz,First thing, if a dedicated IP is allocated to you, why do you need additional port? Secondly, the internal IP is only understood by nodes on intranet, and not on internet, so...
View ArticleRe: Invalid-parameter errorr from apparenly valid user and group IDs passed...
by Jordan Sipahutar. HI Alfonso,I already enrolled user to course,I want to add group member using web service,But, it didn't work,error message :...
View ArticleRe: Invalid-parameter errorr from apparenly valid user and group IDs passed...
by Alfonso Rivero. Hi Jordan,I think that you have a "syntax" problem:$params = array('$members' => $members);should be:$params = array('members' => $members);without '$'
View ArticleRe: core_enrol_get_course_enrolment_methods method returns nothing
by Barry Matthias. HiFirst thing to check is that none of the enrolment methods are disabled in the course, from testing i have found if any of them are disabled especially the Self Enrolment one you...
View ArticleRe: Invalid-parameter errorr from apparenly valid user and group IDs passed...
by Jordan Sipahutar. Thank you Alfonso Rivero,it's really helpful for me to solved my problem,
View ArticleRestricted Access by custom user profile field requires /my to be loaded...
by Joseph Thibault. On our 2.9.3 site, we use "restricted access" which shows/hides External Links depending on what information in customer user profile fields (these are updated by web service). If...
View ArticleCreate Custom Web Service Functions
by Frank Troglauer. Good evening,We are wanting to create some custom web service functionality to integrate with the Iomad version of Moodle. Is there any documentation for this process available to...
View ArticleRe: Create Custom Web Service Functions
by Richard Oelmann. For Moodle itself seehttps://docs.moodle.org/dev/Web_servicesFor any IOMAD specific application you would need to contact IOMAD directly through E-Learn Design (Moodle partners who...
View Article