I am writing a viewsets that takes in an array of string values from the user and validates a table based on the post request. I dont know how to take in an array in request.POST from the user and use the rest APIs in the Postman. As for instance:
class newView(viewsets.ModelViewset):
authentication_classes = (BasicAuthentication)
serializer_class = NewSerializer
def create(self,request,*args,**kwargs):
stringslist = ???
# request.POST.????
# Work with stringslist
Also, how to check this in Postman?