I want to add a class-based view to return users created from one date to another date. I have tried the following are there other ways to filter the user-created between two dates? While doing this I get:
TypeError: get() missing 1 required positional argument: 'to_date'
views.py
class RegisteredUserFilter(APIView):
    serializer = RegisteredUserFilterSerializer
    def get(self, from_date, to_date):
        userondate = User.objects.filter(created_at__range=[from_date, to_date]).values()
        return Response({"User": userondate})
serializers.py
class RegisteredUserFilterSerializer(serializers.Serializer):
    from_date = serializers.DateField()
    to_date = serializers.DateField()
    model = User
full code at: https://github.com/abinashkarki/rest_framework_authentication/tree/master/authapp
 
    