Django REST framework
  • Api Root
GET
  • json
  • api

Api Root

The default basic root view for DefaultRouter

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

{
    "tenant": "https://api.awaaz.de/v1/tenant/?format=api",
    "signup": "https://api.awaaz.de/v1/signup/?format=api",
    "verify/email": "https://api.awaaz.de/v1/verify/email/?format=api",
    "verify/phone": "https://api.awaaz.de/v1/verify/phone/?format=api",
    "purchase/meta/plans": "https://api.awaaz.de/v1/purchase/meta/plans/?format=api",
    "purchase/meta/features": "https://api.awaaz.de/v1/purchase/meta/features/?format=api",
    "purchase/subscription": "https://api.awaaz.de/v1/purchase/subscription/?format=api",
    "purchase/features": "https://api.awaaz.de/v1/purchase/features/?format=api",
    "purchase/assets": "https://api.awaaz.de/v1/purchase/assets/?format=api",
    "purchase/billing": "https://api.awaaz.de/v1/purchase/billing/?format=api",
    "cart/orderitems": "https://api.awaaz.de/v1/cart/orderitems/?format=api",
    "transactions": "https://api.awaaz.de/v1/transactions/?format=api",
    "reports": "https://api.awaaz.de/v1/reports/?format=api",
    "notification": "https://api.awaaz.de/v1/notification/?format=api",
    "preferences/notification": "https://api.awaaz.de/v1/preferences/notification/?format=api"
}