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.
- Update a webhook
Signable API (1.0.0)
https://developers.signable.app/_mock/openapi/
https://api.signable.co.uk/v1/
- Mock server
https://developers.signable.app/_mock/openapi/webhooks/{webhook_id}
- Production server
https://api.signable.co.uk/v1/webhooks/{webhook_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
https://developers.signable.app/_mock/openapi/webhooks/152691
Webhook details returned successfully
The URL to which webhook events are sent
Type of event the webhook listens for
Timestamp when the webhook was created
Timestamp when the webhook was last updated
Timestamp when the webhook was last updated
Timestamp when the webhook was last updated
{ "http": 200, "webhook_id": 152691, "webhook_url": "https://example.com", "webhook_type": "all", "webhook_created": "2025-06-23T17:15:01+0000", "webhook_updated": null, "webhook_suspended": null }
The callback URL where webhook events will be sent.
- Mock server
https://developers.signable.app/_mock/openapi/webhooks/{webhook_id}
- Production server
https://api.signable.co.uk/v1/webhooks/{webhook_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
-u <username>:<password> \
https://developers.signable.app/_mock/openapi/webhooks/152691 \
-H 'Content-Type: application/json' \
-d '{
"webhook_url": "https://example.com/webhook",
"webhook_type": "send-envelope"
}'
{ "http": 200, "message": "The webhook with ID 152691 has been updated", "href": "https://api.signable.co.uk/v1/webhooks/152691", "webhook_id": 152691, "webhook_url": "https://abby-example.com", "webhook_type": "all", "webhook_updated": "2025-06-24T09:32:55+0000" }
- Mock server
https://developers.signable.app/_mock/openapi/webhooks/{webhook_id}
- Production server
https://api.signable.co.uk/v1/webhooks/{webhook_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
-u <username>:<password> \
https://developers.signable.app/_mock/openapi/webhooks/152691
{ "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" }