Sha256: 46c46009e6209bc482ac047a052b1fb18cf01c8e32cb2b872a61d3b106991377
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 Bytes
Contents
import * as HelloSignSDK from "hellosign-sdk"; const api = new HelloSignSDK.UnclaimedDraftApi(); // Configure HTTP basic authorization: api_key api.username = "YOUR_API_KEY"; // or, configure Bearer (JWT) authorization: oauth2 // $config->setAccessToken("YOUR_ACCESS_TOKEN"); const data = { clientId: "ec64a202072370a737edf4a0eb7f4437", fileUrl: ["https://app.hellosign.com/docs/example_signature_request.pdf"], requesterEmailAddress: "jack@hellosign.com", testMode: true, }; const result = api.unclaimedDraftCreateEmbedded(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/UnclaimedDraftCreateEmbedded.js |