I am having trouble implementing the DocuSign Node Client (SDK v3). I am using the Docusign examples on GitHub and NPM, but keep getting INVALID_REQUEST_BODY when calling createRecipeintView.
I login successfully and create an envelope with createEnvelope. Most of the examples to create an envelope use the SDK v2 signature for the second parameter of the method.
envelopesApi.createEnvelope(accountId, envDef, ...
SDK v3 on the NPM site wraps the second parameter as follows
envelopesApi.createEnvelope(accountId, {'envelopeDefinition': envDef}, ...
I would like to know how the 3rd parameter is wrapped for the envelopesApi.createRecipientView method on the SDK v3.
The examples of the SDK version 2 looks as follows:
envelopesApi.createRecipientView(accountId, envelopeId, recipientView ...
If I use the REST API I get a successful view URL, so I know the parameters I pass are correct.
via Timo
No comments:
Post a Comment