简体   繁体   English

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

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

On Sandbox Docusion envelope creation , User 1 , sends envelope to user 3 and cc'ng user 2 . 在Sandbox Docusion信封创建中,用户1将信封发送给用户3,并发送用户2。

Using credentials of user 2 , will I be able to get the envelopes on which i am cc'ed. 使用用户2的凭据,我将能够获得抄送其上的信封。

Is this possible ? 这可能吗 ? Edit- @CodingDwag -Envelope options as you asked in comments 编辑-@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