Closed brukeg closed 1 year ago
@AshMudra I think all you have to do is change the paths in transactions/Views.py lines 12 & 13
path('api/', TransactionView.as_view()),
path('api/<str:transaction_id>/', TransactionDetailView.as_view()),
but we released another breaking change recently so even getting to this point will take a little bit of doing. You'll need to (roughly):
We can do it together sometime this week.
@AshMudra path('api/', TransactionView.as_view()),
has already been updated by Reed but you can still go for the second URL
path('api/<str:transaction_id>/', TransactionDetailView.as_view()),
it needs to be something like:
path('<str:transaction_id>/', TransactionDetailView.as_view()),
The current transaction endpoint urls are:
/transaction/api
and/transaction/api/<str:id>
. We should change that to just/transaction
and/transaction/<str:id>