# Widget signature verified

This webhook is triggered when a recipient verifies their signed envelope through the verification email.  It includes details about the contact, documents, and verification.

Endpoint: POST verified-envelope-widget
Version: 1.0.0
Security: basicAuth

## Request fields (application/x-www-form-urlencoded):

  - `action` (string, required)
    The action taken. Defaults to verified-envelope-widget.
    Example: "verified-envelope-widget"

  - `action_date` (string, required)
    The UTC timestamp of when the envelope was verified
    Example: "2025-08-07T12:10:48+00:00"

  - `company_id` (integer, required)
    The ID of the company that owns the envelope
    Example: 64034

  - `contact_id` (integer, required)
    The ID of the contact who verified the envelope
    Example: 8117397

  - `contact_name` (string, required)
    The name of the contact who verified the envelope
    Example: "Abby"

  - `contact_email` (string, required)
    The email address of the contact who verified the envelope
    Example: "abby@signable.co.uk"

  - `envelope_fingerprint` (string, required)
    A string identifying the verified envelope
    Example: "584ea8b41b0d4c17a96b967433b211e6"

  - `envelope_documents` (string, required)
    A stringified JSON array of documents in the envelope
    Example: "[{\"document_title\":\"Word Doc\",\"document_fingerprint\":\"584ea8b41b0d4c17a96b967433b211e6\",\"document_pdf\":\"https://api.signableapi.com/shareable/document?t=03cbb315-4f68-400d-a5cc-c2884996d061\",\"document_download\":\"https://api.signableapi.com/shareable/document?t=03cbb315-4f68-400d-a5cc-c2884996d061\"}]"

  - `envelope_download` (string, required)
    A download link for the entire envelope
    Example: "https://api.signableapi.com/shareable/envelope?t=03cbb315-4f68-400d-a5cc-c2884996d061"

  - `envelope_fields` (string)
    A stringified JSON array of fields completed during verification
    Example: "[{\"field_id\":460176431,\"field_name\":\"Untitled\",\"field_type\":\"text\",\"field_value\":\"Abby\"}]"

  - `envelope_meta` (string)
    A JSON string of any meta information added to the envelope
    Example: "{\"envelope_title\":\"Word Doc\"}"

  - `signature_fingerprint` (string, required)
    A string identifying the verification applied
    Example: "584ea8b41b0d4c17a96b967433b211e6"

  - `client_ip` (string, required)
    The IP address from which the envelope was verified
    Example: "203.0.113.124"


## Response 200 fields
