I am trying to use the docusign C# SDK to create and an envelope with a document to be signed. I have got it to a point where from my app I can create the envelopeDefinition, create the envelope using the envelopeDefinition then create a RecipientViewRequest and use that RecipientViewRequest to make the ViewUrl and then navigate to that Url to sign the document in the envelope just like how the embedded signing ceremony is done in the quick start example. However I have now noticed that I can't actually see any of the envelopes that have been sent and then signed, there are no envelopes listed on the manage page on the Docusign eSignature site.
I was wondering if this has anything to do with being in the Developer Environment or not but when I run the quick start project, the created envelope shows in Docusign eSignature as "waiting for others" and then as "completed" when I sign the document.
I have compared my code against the code provided in the quick start project from the Docusign Developer site and the only difference is the fact that the embedded signing example from docusign uses the Auth Code Grant flow whereas I am currently using the JWT flow. Other than that I am creating the Envelope that same way that the quick start example is.
Good work on getting as far as you have!
The envelopes you're creating belong to the user your code is authenticating as. -- the
userIdyou're using for your JWT flow.If you log into the DocuSign web app as the same user, you should see your envelopes. -- Same as the envelopes you're creating with the quick start app.