/conventions

GET /conventions

This request returns a list of conventions.

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

Request example

GET /v2/conventions HTTP/1.1
Host: api.lionsclubs.ch

Response example

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{
    "success": true,
    "conventions": [
        {
            "year": 2017,
            "location": "Jura",
            "...": "..."
        },
        {
            "year": 2016,
            "location": "Z\u00fcrich Oerlikon",
            "...": "..."
        }
    ]
}