API returns GeoJSON location of past courses within a certifying organisation. The location is the location of the training center where this course will be held.

GET /id/certifyingorganisation/3liz/feed/past-course/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    2.55,
                    46.565
                ]
            },
            "properties": {
                "name": "QGIS_PyQGIS_2021-11-16-2021-12-01",
                "start_date": "2021-11-16",
                "end_date": "2021-12-01",
                "course_type_name": "PyQGIS",
                "course_convener_name": "Etienne Trimaille",
                "training_center_name": "Online 3Liz",
                "certifying_organisation_name": "3Liz",
                "language": "French",
                "trained_competence": "PyQGIS : découverte de l'API, formulaire, extension, script Processing etc"
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    2.55,
                    46.565
                ]
            },
            "properties": {
                "name": "QGIS_PyQGIS_2022-03-31-2022-04-15",
                "start_date": "2022-03-31",
                "end_date": "2022-04-15",
                "course_type_name": "PyQGIS",
                "course_convener_name": "Etienne Trimaille",
                "training_center_name": "3Liz",
                "certifying_organisation_name": "3Liz",
                "language": "French",
                "trained_competence": "PyQGIS : the QGIS API, Python, form, scripting, Processing script and plugins etc"
            }
        }
    ]
}