How to get courses tags via web service?

How to get courses tags via web service?

by Marina Agafonova -
Number of replies: 4

Hi,

I get courses using core_course_get_courses.

And how I can get course's tags from Moodle?

This field is missing in the response of the web service.

Marina

Average of ratings: -
In reply to Marina Agafonova

Re: How to get courses tags via web service?

by Vitaly Potenko -
Picture of Core developers Picture of Plugin developers
The 'core_course_get_courses' function does not return the course's tags indeed. You should try 'core_tag_get_tags' instead. But to use it you must provide the exact id of a tag.
In reply to Vitaly Potenko

Re: How to get courses tags via web service?

by Marina Agafonova -
Thank you, now I can get tag name by id.
But how can I get tags IDs for a course?
In reply to Marina Agafonova

Re: How to get courses tags via web service?

by Vitaly Potenko -
Picture of Core developers Picture of Plugin developers
That's a logical and an expected question and it negates the usefulness of this function IMO.