REST API ConfigurationΒΆ

To make the REST API available, modify your urls.py as follows:

urlpatterns = [
    ...
    path('api/accounts/', include('django_flex_user.urls')),
]

urlpatterns += [
    path('api-auth/', include('rest_framework.urls')),
]