Sha256: 5f4d7b6950e2edee7c9fbf8d0256d406ab292b62452ae981263a444fe529003d
Contents?: true
Size: 672 Bytes
Versions: 1
Compression:
Stored size: 672 Bytes
Contents
from pprint import pprint from hellosign_sdk import \ ApiClient, ApiException, Configuration, apis configuration = Configuration( # Configure HTTP basic authorization: api_key username="YOUR_API_KEY", # or, configure Bearer (JWT) authorization: oauth2 # access_token="YOUR_ACCESS_TOKEN", ) with ApiClient(configuration) as api_client: api = apis.BulkSendJobApi(api_client) page = 1 page_size = 20 try: response = api.bulk_send_job_list( page=page, page_size=page_size, ) pprint(response) except ApiException as e: print("Exception when calling HelloSign API: %s\n" % e)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/BulkSendJobList.py |