1👍
So i actually figured it out on my own after digging deep into all of the documentation. I was using from django.urls import reverse
when I should have been using the django-host provided from django_hosts.resolvers import reverse
. This allows me to include the host path so the reverse will look like this reverse('users:post_user_feedback', host="api"), data=data)
.
Source:stackexchange.com