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
Forms are not included in the package or did I miss something?
The text was updated successfully, but these errors were encountered:
The lib is great but I also miss the method: POST /rest/v1/leads/submitForm.json. https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/rest/lead-database/leads#submit-form
Could you add support for this method?
Sorry, something went wrong.
The following code needs to be added in the file lib/api/lead.js:
submitForm: function (formId, leads) { var path = util.createPath('leads', 'submitForm.json'); var data = { formId: formId, input: leads }; log.error("Marketo.submitFrom(): " + JSON.stringify(data)); return this._connection.post(path, data); },
No branches or pull requests
Forms are not included in the package or did I miss something?
The text was updated successfully, but these errors were encountered: