Sha256: d78bfc2fe0f36ad33ba57c5e433612092ce0ad74b88ea4cfb0a390ebf785cd85

Contents?: true

Size: 547 Bytes

Versions: 2

Compression:

Stored size: 547 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.templateFiles(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/TemplateFiles.js
hellosign-ruby-sdk-6.0.0.pre.beta oas/examples/TemplateFiles.ts