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.
- List webhooks
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
- Production server
https://api.signable.co.uk/v1/webhooks
- 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?offset=0&limit=10'
Successfully returned a list of webhooks
The URL to which webhook events are sent
The type of event the webhook listens for
Timestamp when the webhook was created
When the webhook was last updated
When the webhook was last updated
When the webhook was last updated
{ "http": 200, "offset": 10, "limit": 10, "total_webhooks": "44", "next": "https://api.signable.co.uk/v1/webhooks?offset=10&limit=10", "webhooks": [ { … }, { … }, { … } ] }
The callback URL where webhook events will be sent.
- Mock server
https://developers.signable.app/_mock/openapi/webhooks
- Production server
https://api.signable.co.uk/v1/webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://developers.signable.app/_mock/openapi/webhooks \
-H 'Content-Type: application/json' \
-d '{
"webhook_url": "https://example.com/webhook",
"webhook_type": "send-envelope"
}'
Webhook successfully created
Confirmation message about the webhook creation
API resource URL for the newly created webhook
The callback URL registered for the webhook
The event type the webhook is subscribed to
{ "http": 200, "message": "The webhook (https://example.com) has been created", "href": "https://api.signable.co.uk/v1/webhooks/152691", "webhook_id": "152691", "webhook_url": "https://example.com", "webhook_type": "all", "webhook_created": "2025-06-23T17:15:01+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 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 }