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

GET /id/certifyingorganisation/spatial-thoughts/feed/upcoming-course/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    72.47140860068613,
                    23.02317489953988
                ]
            },
            "properties": {
                "name": "QGIS_Advanced QGIS (Online)_2025-06-25-2025-07-03",
                "start_date": "2025-06-25",
                "end_date": "2025-07-03",
                "course_type_name": "Advanced QGIS (Online)",
                "course_convener_name": "Ujaval Gandhi",
                "training_center_name": "Spatial Thoughts",
                "certifying_organisation_name": "Spatial Thoughts",
                "language": "English",
                "trained_competence": "Modeling and Automating GIS Workflows, Visualizing Time Series and 3D Data, Advanced Expressions"
            }
        }
    ]
}