Skip to content

Conversation

@mikalstill
Copy link

Simple support for listing templates and their associated
documents. An example usage is:

for template in list(client.list_templates()):
    print 'Template %s, %s' %(template['templateId'],
                              template['emailSubject'])
    for document in client.list_template_documents(
          template['templateId']):
        print '    Contains document: %s' % document['name']

Simple support for listing templates and their associated
documents. An example usage is:

    for template in list(client.list_templates()):
        print 'Template %s, %s' %(template['templateId'],
                                  template['emailSubject'])
        for document in client.list_template_documents(
              template['templateId']):
            print '    Contains document: %s' % document['name']
@zebuline
Copy link
Contributor

Thx @mikalstill for this PR.
Could you add some tests ? For example, in this file: https://github.com/novafloss/pydocusign/blob/master/demo/templates.py

@mikalstill mikalstill closed this Aug 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants