Sha256: 44f1ca0462ec7ee1c3559323f1b3a1294417060619c0bb39118fa99264c7c9e3
Contents?: true
Size: 879 Bytes
Versions: 1
Compression:
Stored size: 879 Bytes
Contents
from pprint import pprint from hellosign_sdk import \ ApiClient, ApiException, Configuration, apis, models 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.UnclaimedDraftApi(api_client) data = models.UnclaimedDraftCreateEmbeddedRequest( client_id="ec64a202072370a737edf4a0eb7f4437", file_url=["https://app.hellosign.com/docs/example_signature_request.pdf"], requester_email_address="jack@hellosign.com", test_mode=True, ) try: response = api.unclaimed_draft_create_embedded(data) 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/UnclaimedDraftCreateEmbedded.py |