Skip to content

Signable API (1.0.0)

The Signable API provides secure and efficient access to Signable's electronic signature platform. With this RESTful API, you can send documents for signature, manage templates, track envelope status, and automate your document workflows from within your own applications.

Download OpenAPI description
Languages
Servers
Mock server

https://developers.signable.app/_mock/openapi/

Production server

https://api.signable.co.uk/v1/

Partners

Manage partner integrations.

Operations

Envelopes

Send, track, and manage documents for e-signature.

Operations

Templates

Create and reuse predefined document templates.

Operations

Contacts

Manage contact details for signers and stakeholders.

Operations

Users

Control user accounts and roles.

Operations

Branding

Customize visual and branding settings for emails.

Operations

Settings

Configure account-wide preferences and defaults.

Operations

Webhooks

Receive real-time notifications about document events.

OperationsWebhooks

Request

Deletes the webhook identified by webhook_id. Once removed, the webhook will no longer receive event notifications.

Security
basicAuth
Path
webhook_idintegerrequired

The ID of the webhook to delete

Example: 152691
curl -i -X DELETE \
  -u <username>:<password> \
  https://developers.signable.app/_mock/openapi/webhooks/152691

Responses

Webhook successfully deleted

Bodyapplication/json
httpintegerrequired

HTTP status code

Example: 200
messagestringrequired

Descriptive message confirming the webhook was removed

Example: "The webhook (https://abby-example.com) has been removed from your account."
webhook_idintegerrequired

Unique identifier of the deleted webhook

Example: 152691
webhook_urlstring(uri)required

The URL of the deleted webhook

Example: "https://abby-example.com"
webhook_typestringrequired

Type of event the deleted webhook was subscribed to

Enum"send-envelope""signed-envelope""cancelled-envelope""rejected-envelope""bounced-envelope""add-user""add-contact""opened-envelope""add-template""all"
Example: "all"
Response
application/json
{ "http": 200, "message": "The webhook (https://abby-example.com) has been removed from your account.", "webhook_id": 152691, "webhook_url": "https://abby-example.com", "webhook_type": "all" }

Request

This webhook is triggered after an envelope has been successfully processed and sent. It delivers information about the envelope, the recipient, any additional metadata, and a download URL.

Security
basicAuth
Bodyapplication/x-www-form-urlencodedrequired
envelope_fingerprintstringrequired

A string representing the envelope that was sent

Example: "584ea8b41b0d4c17a96b967433b211e6"
envelope_documentsstringrequired

A JSON string representing the documents within the envelope

Example: "[{\"document_title\":\"Untitled document\",\"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_downloadstring(uri)required

A URL to download the envelope contents

Example: "https://api.signableapi.com/shareable/envelope?t=03cbb315-4f68-400d-a5cc-c2884996d061"
contact_idintegerrequired

The ID of the contact the envelope was sent to

Example: 14029945
contact_namestringrequired

The name of the contact the envelope was sent to

Example: "Abby Smith"
contact_emailstring(email)required

The email address of the contact the envelope was sent to

Example: "abby@signable.co.uk"
actionstringrequired

The action taken. Defaults to send-envelope.

Example: "send-envelope"
action_datestring(date-time)required

The UTC timestamp of when the action occurred

Example: "2025-06-20T15:50:10+00:00"
envelope_metastring

A JSON string of any meta information added when sending the envelope

Example: ""
envelope_signing_embedstring

An iframe URL for embedded signing, if enabled

Example: "<iframe src=\"https://sign.signable.app/#2KnUUnVQTxtkpV8rmWqem9qXpvaTU2hYLHHyQD7WtdQ\" width=\"100%\" height=\"95%\" frameborder=\"0\" style=\"border: 0; overflow: hidden\"></iframe>"
application/x-www-form-urlencoded
envelope_fingerprint=584ea8b41b0d4c17a96b967433b211e6&envelope_documents=%5B%7B%22document_title%22%3A%22Untitled%20document%22%2C%22document_fingerprint%22%3A%22584ea8b41b0d4c17a96b967433b211e6%22%2C%22document_pdf%22%3A%22https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fdocument%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061%22%2C%22document_download%22%3A%22https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fdocument%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061%22%7D%5D&envelope_download=https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fenvelope%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061&envelope_signing_embed=%3Ciframe%20src%3D%22https%3A%2F%2Fsign.signable.app%2F%232KnUUnVQTxtkpV8rmWqem9qXpvaTU2hYLHHyQD7WtdQ%22%20width%3D%22100%25%22%20height%3D%2295%25%22%20frameborder%3D%220%22%20style%3D%22border%3A%200%3B%20overflow%3A%20hidden%22%3E%3C%2Fiframe%3E&contact_id=14029945&contact_name=Abby%20Smith&contact_email=abby%40signable.co.uk&action=send-envelope&action_date=2025-06-20T15%3A50%3A10%2B00%3A00&envelope_meta=

Responses

Acknowledge receipt

Request

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.

Security
basicAuth
Bodyapplication/x-www-form-urlencodedrequired
envelope_fingerprintstringrequired

A string of the signed envelope

Example: "584ea8b41b0d4c17a96b967433b211e6"
envelope_documentsstringrequired

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_fieldsstringrequired

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_downloadstring(uri)required

URL to download the full signed envelope

Example: "https://api.signableapi.com/shareable/envelope?t=03cbb315-4f68-400d-a5cc-c2884996d061"
contact_idintegerrequired

ID of the signer

Example: 7418454
contact_namestringrequired

Name of the signer

Example: "Abby"
contact_emailstring(email)required

Email address of the signer

Example: "abby@signable.co.uk"
company_idintegerrequired

ID of the sub-account (company) the envelope belongs to

Example: 64034
user_idintegerrequired

Internal user ID associated with the signing action

Example: 267199
signature_fingerprintstringrequired

Unique fingerprint identifying the signature event

Example: "584ea8b41b0d4c17a96b967433b211e6"
client_ipstring(ipv4)required

IP address of the device used to sign

Example: "65.179.58.205"
envelope_metastring

A JSON string of any additional metadata attached to the envelope

Example: ""
actionstringrequired

The action taken. Defaults to signed-envelope.

Example: "signed-envelope"
action_datestring(date-time)required

UTC timestamp of when the signing occurred

Example: "2025-08-01T14:37:47+00:00"
application/x-www-form-urlencoded
envelope_fingerprint=584ea8b41b0d4c17a96b967433b211e6&envelope_documents=%5B%7B%22document_title%22%3A%22Make%20Tests%22%2C%22document_fingerprint%22%3A%22584ea8b41b0d4c17a96b967433b211e6%22%2C%22document_pdf%22%3A%22https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fdocument%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061%22%2C%22document_download%22%3A%22https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fdocument%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061%22%7D%5D&envelope_fields=%5B%7B%22field_id%22%3A458946901%2C%22field_name%22%3A%22Untitled%22%2C%22field_type%22%3A%22text%22%2C%22field_value%22%3A%221st%20Aug%22%7D%5D&envelope_download=https%3A%2F%2Fapi.signableapi.com%2Fshareable%2Fenvelope%3Ft%3D03cbb315-4f68-400d-a5cc-c2884996d061&contact_id=7418454&contact_name=Abby&contact_email=abby%40signable.co.uk&company_id=64034&user_id=267199&signature_fingerprint=584ea8b41b0d4c17a96b967433b211e6&client_ip=87.177.50.205&envelope_meta=&action=signed-envelope&action_date=2025-08-01T14%3A37%3A47%2B00%3A00

Responses

Acknowledge receipt