Sha256: 19c54e0086205a5e9d4f8f7bd4926bc6e31f689ed6ea9bb410c34088c80f4d18

Contents?: true

Size: 631 Bytes

Versions: 1

Compression:

Stored size: 631 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: HelloSignSDK.ReportCreateRequest = {
  startDate: "09/01/2020",
  endDate: "09/01/2020",
  reportType: [
    HelloSignSDK.ReportCreateRequest.ReportTypeEnum.UserActivity,
    HelloSignSDK.ReportCreateRequest.ReportTypeEnum.DocumentStatus,
  ]
};

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.ts