Sha256: 8df2705b8f65f9f3b5c66495f37148d0c3ef31dd61ce2c3260d233745932f863
Contents?: true
Size: 550 Bytes
Versions: 2
Compression:
Stored size: 550 Bytes
Contents
import * as HelloSignSDK from "hellosign-sdk"; const api = new HelloSignSDK.BulkSendJobApi(); // Configure HTTP basic authorization: api_key api.username = "YOUR_API_KEY"; // or, configure Bearer (JWT) authorization: oauth2 // api.accessToken = "YOUR_ACCESS_TOKEN"; const bulkSendJobId = "6e683bc0369ba3d5b6f43c2c22a8031dbf6bd174"; const result = api.bulkSendJobGet(bulkSendJobId); 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/BulkSendJobGet.js |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/BulkSendJobGet.ts |