【发布时间】:2020-07-27 09:51:56
【问题描述】:
我正在寻找一种 API 调用,它可以有效地允许签名者帐户轮询信封 ID。理想情况下,我希望获得符合“需要采取行动”标准的文档的信封 ID。
我已经研究过使用 listStatusChanges GET 请求,但它只返回从其他 Docusign 帐户发送的信封 ID。
【问题讨论】:
标签: docusignapi
我正在寻找一种 API 调用,它可以有效地允许签名者帐户轮询信封 ID。理想情况下,我希望获得符合“需要采取行动”标准的文档的信封 ID。
我已经研究过使用 listStatusChanges GET 请求,但它只返回从其他 Docusign 帐户发送的信封 ID。
【问题讨论】:
标签: docusignapi
这是一个例子。要使用它,您需要替换您的帐户和用户 ID
GET <serverURI>/restapi/v2.1/accounts/ae232f1f-xxxx-xxxx-xxxx-626847fad8bb/envelopes?from_date=2020-01-26T08:00:00.000Z&to_date=2020-03-29T06:59:58.000Z&user_id=ee76c29e-xxxx-xxxx-xxxx-a0f95cd8e225&start_position=0&count=39&order=desc&order_by=last_modified&folder_ids=awaiting_my_signature&folder_types=normal,inbox,sentitems&include=recipients,powerform,folders&include_purge_information=true&query_budget=3
这可能超出了您的需要,但 Web 应用就是这样做的。
【讨论】: