Sha256: 78f79f39d8c20339a163f5f5c9e1cc8de8c9a8df349d63fbf04649d0b5ab3e1e
Contents?: true
Size: 754 Bytes
Versions: 1
Compression:
Stored size: 754 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.EmbeddedApi(api_client) data = models.EmbeddedEditUrlRequest( cc_roles=[""], merge_fields=[], ) template_id = "5de8179668f2033afac48da1868d0093bf133266" try: response = api.embedded_edit_url(template_id, 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/EmbeddedEditUrl.py |