# Envelope signed

This webhook is triggered when a recipient completes signing an envelope. It includes detailed information about the envelope, signer, documents, custom fields, and signature fingerprint.

Endpoint: POST signed-envelope
Version: 1.0.0
Security: basicAuth

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

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

  - `envelope_documents` (string, required)
    JSON string of the documents within the envelope
    Example: "[{\"document_title\":\"Make Tests\",\"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_fields` (string, required)
    JSON string of completed fields in the envelope
    Example: "[{\"field_id\":458946901,\"field_name\":\"Untitled\",\"field_type\":\"text\",\"field_value\":\"1st Aug\"},{\"field_id\":458946905,\"field_name\":\"Untitled\",\"field_type\":\"text\",\"field_value\":\"hiousfdjp\"}]"

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

  - `contact_id` (integer, required)
    ID of the signer
    Example: 7418454

  - `contact_name` (string, required)
    Name of the signer
    Example: "Abby"

  - `contact_email` (string, required)
    Email address of the signer
    Example: "abby@signable.co.uk"

  - `company_id` (integer, required)
    ID of the sub-account (company) the envelope belongs to
    Example: 64034

  - `user_id` (integer, required)
    Internal user ID associated with the signing action
    Example: 267199

  - `signature_fingerprint` (string, required)
    Unique fingerprint identifying the signature event
    Example: "584ea8b41b0d4c17a96b967433b211e6"

  - `client_ip` (string, required)
    IP address of the device used to sign
    Example: "65.179.58.205"

  - `envelope_meta` (string)
    A JSON string of any additional metadata attached to the envelope

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

  - `action_date` (string, required)
    UTC timestamp of when the signing occurred
    Example: "2025-08-01T14:37:47+00:00"


## Response 200 fields
