I am using Django REST Framework
request.data = '{"id": "10", "user": "tom"}'I want to add extra attribute like "age": "30" before sending it to further like
request.data = new_data response = super().post(request, *args, **kwargs)I have two issues
- Why
request.datais coming as string rather thandict - How can I update the
request.data