0.0.1 • Published 8 years ago

loopback-connector-docusign v0.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

loopback-connector-docusign

Usage

  1. Add the following to your .env

    DOCUSIGN_INTEGRATOR_KEY=********-****-******-************
    DOCUSIGN_EMAIL=user@test.com
    DOCUSIGN_PASSWORD=*******
    DOCUSIGN_ENV=demo
  2. Call sendTemplatedDocument from somewhere (models maybe?)

    interface IRecipient {
      email: string;
      name: string;
      role: string;
    }
    
    Loopback.Docusign.sendTemplatedDocument(template: {id: string}, recipient: IRecipient, message: {subject: string}): Promise<void>;