Webhooks
Environment Modes
Accessing and Managing Webhooks
view
, create
, edit
, activate
or deactivate
your configured webhooks, visit your account's webhook page:https://app.signater.com/account/webhooks
Creating Webhooks
POST
, GET
, etc.)HookdeckSignature
being the defaultSupported Events
envelope.created
: This event is triggered when a new envelope is created in the system. An envelope is a container for documents that need to be signed, and this event signifies that a new envelope has been initiated and is ready for further processing.envelope.publish_scheduled
: This event occurs when an envelope's publication is scheduled. It indicates that the envelope has been planned for publishing at a later time, but hasn't yet been made available for signing.envelope.published
: Triggered when an envelope is officially published. This means that the envelope is now available for signing by the designated parties. It signifies the start of the signing process.envelope.published_by_schedule
: This event happens when an envelope is published automatically according to a pre-scheduled time. It's similar to the envelope.published event, but specifically indicates that the publication was triggered by a scheduling rule.envelope.unpublished
: This event is sent when an envelope is unpublished, meaning it has been removed or made unavailable for signing. It could happen if the envelope was canceled or revoked before being signed.envelope.updated
: This event occurs when an envelope is updated. Updates may include changes to the envelope's details, documents, recipients, or other attributes that are necessary for the workflow.envelope.cancelled
: Triggered when an envelope is canceled, meaning the envelope and its associated signing process are no longer valid. This could happen for various reasons, such as an error or a change in requirements.envelope.expired
: This event happens when an envelope expires, meaning the envelope is no longer valid for signing due to the expiration of its designated timeframe.envelope.signed
: This event is triggered when an envelope has been fully signed by all the intended signers. It signifies that the signing process is complete, and the envelope is now finalized.envelope.viewed_by_signer
: This event occurs when a signer views the envelope, but has not necessarily signed it yet. It indicates that the signer has accessed the envelope for review.envelope.cancelled_due_to_mfa_error_by_signer
: Triggered when an envelope is canceled because the signer encountered an error related to Multi-Factor Authentication (MFA). This event signifies that the signing process was stopped due to a failure in the authentication step.envelope.rejected_by_signer
: This event happens when a signer rejects an envelope, meaning they decided not to sign or agree to the contents of the document. This can happen at any stage of the signing process.envelope.approved_by_signer
: This event occurs when a signer approves the envelope, indicating their consent to the contents, but this approval might not necessarily be a final signature. It could be part of an approval workflow or a pre-signing step.Data Sent
_by_signer
suffix (the last four types of events), the signer ID will also be included.Important Notes
Example Payload
{
"envelope_id": "696d0b7f-8e2f-4fb1-9605-72b197ee154d",
"event_type": "envelope.created",
"account_id": "00cae3c2-8b7c-41b6-b934-6724808fe7f7",
"env": "production"
}
envelope_id
: The ID of the envelope that triggered the eventevent_type
: The type of event that was triggeredaccount_id
: The ID of the account that triggered the eventenv
: The environment, which can be either production
or sandbox
Webhooks CLI Debugging
Installing Hookdeck CLI
Installation Methods
Setting Up CLI for Debugging in Signater
1.
2.
3.
Important Notes:
Webhook Request Headers
{
"content-length": "157",
"content-type": "application/json; charset=utf-8",
"request-id": "|6b1bc96c7cee9179e177e8ce95b18530.09a8251c01c86fdb.",
"x-signater-apikey": "35198a2a282a41e5b1c64d55bc55c81c"
}
content-length
: This header indicates the size of the body content in bytes. For example, a value of 157 means that the body of the request is 157 bytes long.content-type
: Specifies the media type of the request body. In this case, it is set to application/json; charset=utf-8, which means the body contains JSON data encoded in UTF-8.request-id
: A unique identifier for the webhook request, useful for tracing and debugging. This helps correlate logs and track the request through the system. For example, the value |6b1bc96c7cee9179e177e8ce95b18530.09a8251c01c86fdb. is used to uniquely identify the request.x-signater-apikey
: This header contains the API key associated with the Signater account that triggered the webhook. It is used for authentication and authorization purposes. For instance, the value 35198a2a282a41e5b1c64d55bc55c81c represents the API key used in the request.Modified at 2025-01-05 14:46:20