I am designing an API-first application, which will obviously not use the Django templating system but instead will use just DRF and a React frontend.
Viewflow Pro has an API endpoint mechanism, and also I seem to understand (but I'm not entirely sure, so that's a separated question) that you need Viewflow Pro just because you are designing a commercial application and not an open source one.
I would like to understand if I need to use the Viewflow REST endpoints or if I could use my DRF generics viewsets integrated for viewflow.
As a theoretical example: I have an APIView that exposes a change of state, and depending on the user which triggers the change of state, Viewflow helps me dispatching the proper "link" to another endpoint and/or APIView which is appropriated for the flow.
So instead of going to /myviewflowendpoint/state/change
just going to a regular /my/foo/endpoint
and put the viewflow logic programmatically inside that view. Is this possible? Is there something similar on the cookbook?