Issue was a faulty import
from rest_framework.views import APIView, GenericAPIView
It should be
from rest_framework.views import APIView from rest_framework.generics import GenericAPIView