问题描述
关于Docusign的API :如果我们在唯一信封端点上执行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调用,最后一次调用也将违反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请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!