[Answered ]-Not getting any data from request object using request.POST.get

1👍

You can get the Data using request.data.
request.POST is for form data.

https://www.django-rest-framework.org/tutorial/2-requests-and-responses/#request-objects

Leave a comment