@robinpath/hellosign
v0.1.0
Published
> HelloSign module for RobinPath.
Downloads
57
Keywords
Readme
@robinpath/hellosign
HelloSign module for RobinPath.
Why use this module?
The hellosign module lets you:
- getSignatureRequest
- listSignatureRequests
- sendSignatureRequest
- sendWithTemplate
- cancelSignatureRequest
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/hellosignQuick Start
1. Set up credentials
hellosign.setCredentials "your-credentials"2. getSignatureRequest
hellosign.getSignatureRequestAvailable Functions
| Function | Description |
|----------|-------------|
| hellosign.setCredentials | Configure hellosign credentials. |
| hellosign.getSignatureRequest | getSignatureRequest |
| hellosign.listSignatureRequests | listSignatureRequests |
| hellosign.sendSignatureRequest | sendSignatureRequest |
| hellosign.sendWithTemplate | sendWithTemplate |
| hellosign.cancelSignatureRequest | cancelSignatureRequest |
| hellosign.downloadSignatureRequest | downloadSignatureRequest |
| hellosign.remindSignatureRequest | remindSignatureRequest |
| hellosign.listTemplates | listTemplates |
| hellosign.getTemplate | getTemplate |
| hellosign.deleteTemplate | deleteTemplate |
| hellosign.createEmbeddedSignatureRequest | createEmbeddedSignatureRequest |
| hellosign.getAccount | getAccount |
| hellosign.updateAccount | updateAccount |
| hellosign.listTeamMembers | listTeamMembers |
Examples
getSignatureRequest
hellosign.getSignatureRequestlistSignatureRequests
hellosign.listSignatureRequestssendSignatureRequest
hellosign.sendSignatureRequestIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/hellosign";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
hellosign.setCredentials "your-credentials"
hellosign.getSignatureRequest
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/pdf— PDF module for complementary functionality@robinpath/excel— Excel module for complementary functionality@robinpath/office— Office module for complementary functionality@robinpath/docusign— DocuSign module for complementary functionality@robinpath/pandadoc— PandaDoc module for complementary functionality
License
MIT
