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.
2 parents 2c0523c + 0b37b53 commit f493c1cCopy full SHA for f493c1c
pydocusign/client.py
@@ -453,3 +453,11 @@ def get_template(self, templateId):
453
.format(accountId=self.account_id,
454
templateId=templateId)
455
return self.get(url)
456
+
457
+ def get_connect_failures(self):
458
+ """GET a list of DocuSign Connect failures."""
459
+ if not self.account_url:
460
+ self.login_information()
461
+ url = '/accounts/{accountId}/connect/failures' \
462
+ .format(accountId=self.account_id)
463
+ return self.get(url)['failures']
0 commit comments