[Answered ]-Class-based Django API only GET method. It's possible?

1👍

You can allow only GET(list) requests in urls.py.
Try to do it:

path('your_path/', views.GetFooIdViewSet.as_view({
    'get': 'list'
})),

Leave a comment