Skip to content

Commit fe399bd

Browse files
authored
Update embedClickwrap.js
1 parent 1089004 commit fe399bd

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

lib/click/examples/embedClickwrap.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
* @param {Object} args Arguments for embedding a clickwrap
1313
* @param {string} args.accessToken The access token
1414
* @param {string} args.basePath The API base path URL
15-
* @param {string} args.documentArgs.fullName The email of first signer
16-
* @param {string} args.documentArgs.email The name of first signer
17-
* @param {string} args.documentArgs.company The email of second signer
18-
* @param {string} args.documentArgs.jobTitle The name of second signer
19-
* @param {string} args.documentArgs.date The email of cc recipient
15+
* @param {string} args.documentArgs.fullName
16+
* @param {string} args.documentArgs.email
17+
* @param {string} args.documentArgs.company
18+
* @param {string} args.documentArgs.jobTitle
19+
* @param {string} args.documentArgs.date
2020
*/
2121
const embedClickwrap = async (args) => {
2222
// Step 3. Construct the request Body
@@ -28,8 +28,6 @@
2828
date: args.documentArgs.date,
2929
};
3030

31-
console.log(documentArgs);
32-
3331
const userAgreement = new docusignClick.UserAgreementRequest.constructFromObject({
3432
clientUserId: documentArgs.email,
3533
documentData: {
@@ -58,4 +56,4 @@
5856
};
5957

6058
module.exports = { embedClickwrap };
61-
59+

0 commit comments

Comments
 (0)