Django REST framework
  • Api Root
GET
  • json
  • api

Api Root

The default basic root view for DefaultRouter

GET /store/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "products": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/products/?format=api",
    "collections": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/collections/?format=api",
    "carts": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/carts/?format=api",
    "customers": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/customers/?format=api",
    "push-tokens": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/push-tokens/?format=api",
    "orders": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/orders/?format=api",
    "supplier/products": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/supplier/products/?format=api",
    "suppliers": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/suppliers/?format=api",
    "supplier": "https://gadget-net-africa-v2-e7892cd2ec8d.herokuapp.com/store/supplier/?format=api"
}