繁体   English   中英

在信封上抄送的用户的Docusign访问信封

[英]Docusign access envelopes of user who is cc'ed on envelopes

在Sandbox Docusion信封创建中,用户1将信封发送给用户3,并发送用户2。

使用用户2的凭据,我将能够获得抄送其上的信封。

这可能吗 ? 编辑-@CodingDwag-您在评论中要求的信封选项

 DateTime fromDate = DateTime.UtcNow;
    fromDate = fromDate.AddDays(-1);
    string fromDateStr = fromDate.ToString("o");
    // set a filter for the envelopes we want returned using the fromDate 
    return _EnvelopeOptions = new EnvelopesApi.ListStatusChangesOptions()
    {
        fromDate = fromDateStr,
        toDate = DateTime.UtcNow.ToString("o"),
        status = "completed"
    };

是的,一个CCed用户2可以访问信封。

暂无
暂无

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

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