Signature Requests
API reference for signature request operations
Create Signature Request
Create a new signature request.
skribble.signature_request.create(signature_request: SignatureRequest) -> SignatureRequestResponse
Show SignatureRequest properties
Show SignatureRequest properties
Title of the signature request
Message sent to the participants
Base64 encoded bytes of document
Content type of bytes sent in content
Publicly accessible URL for document download
Document ID of an existing document on Skribble
Legislation of the signatures (ZERTES or EIDAS). Only important for QES signatures
Minimal quality of the signatures (AES, AES_MINIMAL, SES or QES)
CC email addresses
Callback-URL for success
Callback-URL for errors
Callback-URL for updates
Custom field for own/customer settings
Users with full write access
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
Get Signature Request
Retrieve a signature request by ID.
skribble.signature_request.get(signature_request_id: str) -> SignatureRequestResponse
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
List Signature Requests
List all signature requests with optional pagination.
skribble.signature_request.list(page_size: int = None) -> List[SignatureRequestResponse]
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
Withdraw Signature Request
Withdraw a pending signature request.
skribble.signature_request.withdraw(signature_request_id: str, message: str = None) -> SignatureRequestResponse
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
Delete Signature Request
Delete a signature request.
skribble.signature_request.delete(signature_request_id: str) -> None
Remind Signers
Send a reminder to signers of a signature request.
skribble.signature_request.remind(signature_request_id: str) -> None
Add Signer
Add a new signer to an existing signature request.
skribble.signature_request.signer.add(signature_request_id: str, signer: SignerRequest) -> SignatureRequestResponse
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
Remove Signer
Remove a signer from a signature request.
skribble.signature_request.signer.remove(signature_request_id: str, signer_id: str) -> None
Replace Signers
Replace all signers in a signature request.
skribble.signature_request.signer.replace(signature_request_id: str, signers: List[SignerRequest]) -> SignatureRequestResponse
Show SignatureRequestResponse properties
Show SignatureRequestResponse properties
ID of the SignatureRequest object
Given title for the signature request
Given message that is shown to the participants
ID of the Document object
Given legislation of the signatures for this signature request
Given quality of the signatures for this signature request
Deprecated. Please use the signing_url inside the user’s Signature entry
Status of the signature request
Array of signatures within this signature request
Given array of email-addresses that will be additionally notified upon completed signature request
Creator of the SignatureRequest object
Array of users with read access on the signature request
Array of users with write access on the signature request
Timestamp at which the signature request was created
Timestamp at which the signature request was last updated
Array of attachments associated with this signature request
Add Attachment
Add an attachment to a signature request.
skribble.signature_request.attachment.add(signature_request_id: str, attachment: AttachmentRequest) -> List[AttachmentResponse]
List Attachments
List all attachments for a signature request.
skribble.signature_request.attachment.list(signature_request_id: str) -> List[AttachmentResponse]
Download Attachment
Download an attachment’s content.
skribble.signature_request.attachment.download(signature_request_id: str, attachment_id: str) -> bytes
Delete Attachment
Delete an attachment from a signature request.
skribble.signature_request.attachment.delete(signature_request_id: str, attachment_id: str) -> None
Was this page helpful?