retrieve:
Return the details about the given Spoken Language id.

list:
List all Spoken Language objects.

GET /api/v1/spoken_languages/?format=api&ordering=-en_label
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 5,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 5,
            "code": "XX",
            "fr_label": "autre",
            "en_label": "Other",
            "activated": true
        },
        {
            "id": 4,
            "code": "IT",
            "fr_label": "italien",
            "en_label": "Italian",
            "activated": true
        },
        {
            "id": 3,
            "code": "DE",
            "fr_label": "allemand",
            "en_label": "German",
            "activated": true
        },
        {
            "id": 1,
            "code": "FR",
            "fr_label": "français",
            "en_label": "French",
            "activated": true
        },
        {
            "id": 2,
            "code": "EN",
            "fr_label": "anglais",
            "en_label": "English",
            "activated": true
        }
    ]
}