Sha256: 73636737d522488e0738a2aef73969cdeb5000a05949e92a67288727748c457e
Contents?: true
Size: 507 Bytes
Versions: 1
Compression:
Stored size: 507 Bytes
Contents
import * as HelloSignSDK from "hellosign-sdk"; const api = new HelloSignSDK.ReportApi(); // Configure HTTP basic authorization: api_key api.username = "YOUR_API_KEY"; const data = { startDate: "09/01/2020", endDate: "09/01/2020", reportType: [ "user_activity", "document_status", ] }; const result = api.reportCreate(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/ReportCreate.js |