How to add new flow actions to a document flow in PHP #36
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello there!
I am currently working on a project that uses DropSigner to manage signature dispatches and events. Recently, I had to implement the following scenario:
First, the document is created and sent for signature with only one flow: the client signature. After the client has signed the document, an analyst can select who will sign the document next and then send the signature request to that person. To achieve this, I needed to start a document flow first and later add another flow action to that same document flow.
Since there wasn't any example of how to add a new flow action to an already started document flow, it took some digging into the DropSigner library classes and a few conversations with the support team to understand how I could implement the needed solution. Fortunately, it was already possible to do so!
To help and save some time for those who might find themselves in the same situation, I created this example in PHP (which is the technology I'm currently using) that demonstrates how to add a new flow action to an existing document flow.
Hope you find it useful!