Sha256: 69708e7aa39e1d44f8dc7f7e7ff0d1cdd9b73801cd80cf42ced519159807e85f
Contents?: true
Size: 512 Bytes
Versions: 2
Compression:
Stored size: 512 Bytes
Contents
import * as HelloSignSDK from "hellosign-sdk"; const api = new HelloSignSDK.ApiAppApi(); // Configure HTTP basic authorization: api_key api.username = "YOUR_API_KEY"; // or, configure Bearer (JWT) authorization: oauth2 // api.accessToken = "YOUR_ACCESS_TOKEN"; const page = 1; const pageSize = 2; const result = api.apiAppList(page, pageSize); 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/ApiAppList.js |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/ApiAppList.ts |