Sign in

Create webhook subscription

documented

Subscribe to SignNow events and receive callback notifications.

POST /api/v2/eventsWebhooksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.signnow.com/api/v2/events" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "event": "{{$event}}", "entity_id": "{{$entity_id}}", "action": "callback", "attributes": { "callback": "{{$callback_url}}", "use_tls_12": {{$use_tls_12}}, "integration_id": "{{$integration_id}}", "docid_queryparam": {{$docid_queryparam}}, "headers": { "X-Custom-Header": "{{$custom_header_value}}" }, "secret_key": "{{$secret}}" } }'