I have a question about how best to chain requests to test multiple workflows in postman. I want to test the following two flows. Each of the boxes is a request set up in postman, but there are requests that are common to both workflows. How do I use the folder structure, collection runner and setNextRequest to enable this or should I just be duplicating the requests?
Any help would be much appreciated!
The workflow splits after create token. I have it set up as follows at the moment:
Api Name Folder
1 Register Device (contains activate, create token and register device requests)
2 Deregister a Device (contains activate, create token, list all devices and deregister a device requests
request)
The problem with this is that the activate and create token requests are duplicated. I want to design a workflow that allows me to reuse them across workflows rather than duplicate them.