Docusign API限制:每15分钟每个唯一信封端点一个GET请求 [英] Docusign API Limits: one GET request per unique envelope endpoint per 15 minutes

查看:71
本文介绍了Docusign API限制:每15分钟每个唯一信封端点一个GET请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

关于Docusign的API 每个唯一信封端点每15分钟限制一个GET请求:如果我们在唯一信封端点上执行POST,是否可以在15分钟内跟进另一个GET到同一唯一信封端点?换句话说, POST是否重置GET限制计数器

Regarding Docusign's API one GET request per unique envelope endpoint per 15 minutes limit: if we do a POST on the unique envelope endpoint are we OK to follow up with another GET to the same unique envelope endpoint within 15 minutes? In other words, does a POST reset the GET limit counter?

推荐答案

Docusign强制执行每个唯一信封端点15分钟的规则是为了防止呼叫者重复轮询相同的信封状态。更多信息此处

The reason Docusign enforces the 15 minute rule per unique envelope endpoint is to prevent callers from repeatedly polling for the same envelope status. More info here.

Q: POST是否重置GET限制计数器?


POST调用不会重置GET限制。

A POST call will NOT reset the GET limits.

在以下示例中,即使进行了POST调用,最后一次调用也将违反15分钟规则。在15分钟内两次调用信封 AAA

In the following example, even though a POST call is made, the last call will violate the 15 minute rule. A GET call for envelope AAA is made twice within 15 minutes.

[12:01:00] GET  /accounts/12345/envelopes/AAA 
[12:02:00] POST /accounts/12345/envelopes
[12:03:00] GET  /accounts/12345/envelopes/BBB
[12:04:00] GET  /accounts/12345/envelopes/AAA * (Violation)

以下是违反API,因为您正在访问唯一的信封端点。

The following is NOT an API violation because you are accessing unique envelope end points.

[12:00:00] POST /accounts/12345/envelopes
[12:01:00] GET  /accounts/12345/envelopes/AAA/documents/1
[12:02:00] GET  /accounts/12345/envelopes/AAA/recipients/2

这篇关于Docusign API限制:每15分钟每个唯一信封端点一个GET请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆