API endpoint that allows amenity categories to be viewed or edited.

GET /amenity-categories/?format=api&ordering=-id&page=2
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 12,
    "next": null,
    "previous": "https://api.swistay.com/amenity-categories/?format=api&ordering=-id",
    "results": [
        {
            "id": 2,
            "name": "Parking & Facilities",
            "order": 4
        },
        {
            "id": 1,
            "name": "Sports & Games",
            "order": 11
        }
    ]
}