I configured a connection between DocuSign & Nintex, such that whenever a document is signed in DocuSign, it will trigger the Nintex workflow to run. But I also want to know the data about the “envelope” of the document that was signed DocuSign. DocuSign sends some data over in JSON format. I can see it in the “Instance start data” of my workflow instance. The data is JSON formatted and looks like this:
{
"event": "envelope-completed",
"apiVersion": "v2.1",
"uri": "/restapi/v2.1/accounts/b1b24acb-55cs-481f-bae8-a08a0dc16782/envelopes/23f266d9-ae08-4cc7-867b-c8c2d1c62641",
"retryCount": 0,
"configurationId": 10607268,
"generatedDateTime": "2024-08-16T17:00:53.1469999Z",
"data": {
The only method I know to capture start data is to create a start variable in the workflow and name it the same as the incoming POST data, keeping in mind that Nintex will prefix “se_” to the name of the start variable. But I don’t know how to capture the how object of JSON text that DocuSign sends over.
Any ideas?