Stringency of DocuSign Certification

后端 未结 1 1300
感情败类
感情败类 2021-01-13 09:10

From the DocuSign "API Requirements Information":

[Y]our API certification review involves verifying that you do not exceed 1 status request pe

相关标签:
1条回答
  • 2021-01-13 09:37

    The guidelines mean that you should not allow end users to continously click through to docusign to fetch latest status.

    As Jeff says in the comments, you should use the Connect api, or per-envelope callback, or cache the status responses, making an actual request to docusign no more than once every 15 minutes per envelope.

    Maximum polling frequency and status architecture is one of the key issues that the certification process seeks to investigate.

    You could also disable your "status" button for 15 minutes after a request. But that wouldn't be a good ux. Better to effectively disable it via a 15 minute cache. - - like the close button on elevators.

    Added

    The per-envelope callback parameter is eventNotification.

    0 讨论(0)
提交回复
热议问题