Django REST framework
  • Api Root
GET
  • json
  • api

Api Root

GET:
Display all available urls.

Since some urls have specific permissions, you might not be able to access
them all.

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

{
    "login": "http://academy.excelhealthcareservices.co.uk/api/login/?format=api",
    "basket": "http://academy.excelhealthcareservices.co.uk/api/basket/?format=api",
    "basket-add-product": "http://academy.excelhealthcareservices.co.uk/api/basket/add-product/?format=api",
    "basket-add-voucher": "http://academy.excelhealthcareservices.co.uk/api/basket/add-voucher/?format=api",
    "basket-shipping-methods": "http://academy.excelhealthcareservices.co.uk/api/basket/shipping-methods/?format=api",
    "checkout": "http://academy.excelhealthcareservices.co.uk/api/checkout/?format=api",
    "orders": "http://academy.excelhealthcareservices.co.uk/api/orders/?format=api",
    "options": "http://academy.excelhealthcareservices.co.uk/api/options/?format=api",
    "products": "http://academy.excelhealthcareservices.co.uk/api/products/?format=api",
    "countries": "http://academy.excelhealthcareservices.co.uk/api/countries/?format=api"
}