The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Document::eSign::Docusign::getListOfEnvelopesInFolders - This returns a list of envelopes that match the criteria specified in the query. Use to search for completed envelopes etc.

VERSION

Version 0.04

functions

getListOfEnvelopesInFolders($parent, $vars)

    my $response = $ds->getListOfEnvelopesInFolders(
        {
            accountId           => $ds->accountid, # Required
            search_folder       => 'completed', # Required
        },
        {
            start_position      => {integer}, 
            count               => {integer}
            from_date           => {date/time}, 
            to_date             => {date/time}, 
            order_by            => {string}, 
            order               => {string},
            include_recipients  => {true/false}, all
        }
    );
    
    print "Got envelopes: " . Dumper $response . "\n";
   

Full options:

https://www.docusign.com/p/RESTAPIGuide/RESTAPIGuide.htm#REST%20API%20References/Get%20List%20of%20Envelopes%20in%20Folders.htm%3FTocPath%3DREST%2520API%2520References%7C_____111