Sha256: d52664d6ad1c868691987e5859082d065a63248c17071d8fde3989ec46e45b41
Contents?: true
Size: 617 Bytes
Versions: 1
Compression:
Stored size: 617 Bytes
Contents
import * as HelloSignSDK from "hellosign-sdk"; const api = new HelloSignSDK.TemplateApi(); // Configure HTTP basic authorization: api_key api.username = "YOUR_API_KEY"; // or, configure Bearer (JWT) authorization: oauth2 // $config->setAccessToken("YOUR_ACCESS_TOKEN"); const data = { emailAddress: "george@hellosign.com", }; const templateId = "21f920ec2b7f4b6bb64d3ed79f26303843046536"; const result = api.templateRemoveUser(templateId, data); result.then(response => { console.log(response.body); }).catch(error => { console.log("Exception when calling HelloSign API:"); console.log(error.body); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/TemplateRemoveUser.js |