We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm testing this tutorial 'Creates a link for the embedded invite.' and one of the example.
It returns this error: "error": "Error 500: TypeError: Cannot read properties of undefined (reading 'unique_id')"
My code is below:
``const email_address = 'mygmail.com'; const templateDocId= 'docIdStringhere' //SignNow templateId; const fieldInvite = { unique_id: templateDocId, from: "mygmail.com", to: [ { email: email_address, role: "Signer 1", order: 1, reassign: "0", decline_by_signature: "0", reminder: 4, expiration_days: 27, subject: "Field invite Signer1", message: "Message", }, ], }; const sign_invite = await new Promise((resolve, reject) => { signNowAPI.template.invite( { data: { ...fieldInvite, }, id: templateDocId, token: signNowToken, }, (error, response) => { if (error) { reject(error); } else { resolve(response); } } ); }); `` ```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm testing this tutorial 'Creates a link for the embedded invite.' and one of the example.
It returns this error:
"error": "Error 500: TypeError: Cannot read properties of undefined (reading 'unique_id')"
My code is below:
The text was updated successfully, but these errors were encountered: