All Samples(6) | Call(5) | Derive(0) | Import(1)
Contains information regarding documents that need to be signed Comprises the following attributes: test_mode (bool): Whether this is a test signature request. Test requests have no legal value. Defaults to 0. signature_request_id (str): The id of the SignatureRequest requester_email_address (str): The email address of the initiator of(more...)
src/h/e/hellosign-python-sdk-0.3.8/hellosign_sdk/hsclient.py hellosign-python-sdk(Download)
from hellosign_sdk.utils.request import HSRequest from hellosign_sdk.utils.exception import HSException, NoAuthMethod from hellosign_sdk.utils.exception import HTTPError from hellosign_sdk.resource.account import Account from hellosign_sdk.resource.signature_request import SignatureRequest
response = request.get( self.SIGNATURE_REQUEST_INFO_URL + signature_request_id) return SignatureRequest(response["signature_request"]) # TODO: return list info besides signature request list
response = request.get(self.SIGNATURE_REQUEST_LIST_URL) for signature_request in response["signature_requests"]: sr_list.append(SignatureRequest(signature_request)) return sr_list
signature_request_id, data={"email_address": email_address}) return SignatureRequest(response["signature_request"]) def cancel_signature_request(self, signature_request_id):
cc_email_addresses_payload.items() + file_urls_payload.items()), files=files_payload) return SignatureRequest(response["signature_request"]) def _send_signature_request_with_rf(self, test_mode="0", client_id=None,