Solution 1:

This was resolved in the comments by user2663554

Problem solved, I miss one slash on the url.

This response code (405) can come from any number of issues, but it generally ends up that either you are using the wrong URL (as in this case), or you are using the wrong request method. Sometimes it's both!

Quite often I see people getting this issue when they are trying to update an individual resource (/api/res/1), but they are using the list url (/api/res) which doesn't allow the request to be made. This can also happen in the reverse, where someone is trying to create a new instance, but they are sending a POST request to the individual object.

In some cases, the wrong url is being used, so users are requesting a standard non-API view and thinking it is an API view (/res instead of /api/res). So make sure to always check your urls!

Solution 2:

In my case i had a router with same base url

router.register('sales', SalesViewSet, basename='sales')

and my url patterns was

urlpatterns = [
    path('', include((router.urls, app_name))),
    path('sales/analytics/', Analytics.as_view(), name='create'),
]

I was getting 405 error for sales/analytics/. The solution was change the order of urlpatterns.

urlpatterns = [
    path('sales/analytics/', Analytics.as_view(), name='create'),
    path('', include((router.urls, app_name))),
]

Solution 3:

class ApiIndexView(APIView)

instead of this please "import from rest_framework import generics" and change it to

class ApiIndexView(generics.ListCreateAPIView) 

there are many views in generic listcreateAPIview is used for get and post and createapiview is used only for post methods

Solution 4:

My first answer on SO. After trying everything here and being frustrated for the past 6 hours, it finally hit me and I found another reason this might be happening; I, quite simply, was not logged in to /admin. I logged in to /admin and that fixed the "HTTP 405 method not allowed" problem i.e. the post view not coming up. I hope this helps anyone stuck with this kind of issue.