Sha256: 0f1affe8634c2576f07553fe3f84f85760bf7863df9c71a9d808ba6ceeeec720
Contents?: true
Size: 548 Bytes
Versions: 2
Compression:
Stored size: 548 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 templateId = "5de8179668f2033afac48da1868d0093bf133266"; const result = api.templateDelete(templateId); result.then(response => { console.log(response.body); }).catch(error => { console.log("Exception when calling HelloSign API:"); console.log(error.body); });
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/TemplateDelete.js |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/TemplateDelete.ts |