Sha256: 8c7abb980e16703e2266f88ec008ed4934e74203d55ee025975835c233589bc5
Contents?: true
Size: 757 Bytes
Versions: 1
Compression:
Stored size: 757 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: HelloSignSDK.UnclaimedDraftCreateEmbeddedRequest = { 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.ts |