简体   繁体   English

可以为 DocuSign 信封获取的最大结果是多少:listStatusChanges API

[英]What is the Max results that can be fetched for DocuSign Envelopes : listStatusChanges API

What is the Max results that can be fetched for Docusign Envelopes: listStatusChanges API https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/liststatuschanges/ Docusign Envelopes 可以获取的最大结果是多少:listStatusChanges API https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/liststatuschanges/

The max count value is not specified in the documentation.文档中未指定最大计数值。 Also would like to know the default result size也想知道默认结果大小

There's no defined maximum and it can change in different conditions.没有定义的最大值,它可以在不同的条件下改变。 You get the information about the size in the first few lines of JSON.您可以在 JSON 的前几行中获得有关大小的信息。 If it's too many envelopes for one call - you get a URI to make a call for the next set and you know how many in each request:如果一个呼叫的信封太多 - 您将获得一个 URI 来呼叫下一组,并且您知道每个请求中有多少个:

"resultSetSize": "575",
  "startPosition": "0",
  "endPosition": "201",
  "totalSetSize": "575",
  "nextUri": "URI to make next call",
  "previousUri": "URI for previous call",

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM