Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62cd6a8 commit f2fc9efCopy full SHA for f2fc9ef
jotform.py
@@ -438,6 +438,18 @@ def get_form_reports(self, formID):
438
439
return self.fetch_url('/form/' + formID + '/reports', method='GET')
440
441
+ def create_report(self, formID, report):
442
+ """Create new report of a form
443
+
444
+ Args:
445
+ formID (string): Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.
446
+ report (array): Report details. List type, title etc.
447
448
+ Returns:
449
+ Report details and URL
450
+ """
451
+ return self.fetch_url('/form/' + formID + '/reports', report, 'POST')
452
453
def delete_submission(self, sid):
454
"""Delete a single submission.
455
0 commit comments