Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 291 Bytes

GET_P_TOPPING.md

File metadata and controls

22 lines (17 loc) · 291 Bytes

Pizza Toppings List

GET /api/pizza_toppings/

Returns a list of pizza toppings in database.

Example

Request

GET http://localhost:8000/api/pizza_toppings/

Response

[
    {
        "topping": "Tomato"
    },
    {
        "topping": "Capsicum"
    }
]