from django.urls import path from shop.views import webhook app_name = 'shop' urlpatterns = [path('order//webhook/', webhook, name='webhook')]