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

GET /amenity-categories/?format=api&ordering=-order&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=-order",
    "results": [
        {
            "id": 6,
            "name": "Bathroom",
            "order": 2
        },
        {
            "id": 8,
            "name": "Bedroom & Laundry",
            "order": 1
        }
    ]
}