Pigeon // E-Sign
  1. Webhooks
Pigeon // E-Sign
  • Introduction
  • Authentication
  • Integrations
  • Documents
    • List Documents
      GET
    • Create Document
      POST
    • Get Document Status
      GET
    • Delete Document
      DELETE
    • Update Document
      PATCH
    • Update Document Status
      PATCH
    • Move Document to Draft
      POST
    • Get Document Details
      GET
    • Send Document
      POST
    • Create Document Session
      POST
    • Download Document
      GET
    • Download Protected Document
      GET
    • Update Document Ownership
      PATCH
    • Transfer Documents Ownership
      PATCH
  • Document Attachments
    • Document Attachment List
      GET
    • Document Attachment Create
      POST
    • Document Attachment Details
      GET
    • Document Attachment Delete
      DELETE
    • Document Attachment Download
      GET
  • Document Generation
    • List Document Fields
    • Create Document Fields
  • Document Recipients
    • Add Document Recipient
    • Edit Document Recipient
    • Delete Document Recipient
    • Reassign Document Recipient
  • Bulk Send
    • Trigger Bulk Send
    • Create Bulk Send List
    • Get Bulk Send List
    • Get Bulk Send Lists
    • Update Bulk Send List
    • Delete Bulk Send List
  • Templates
    • List Templates
    • Create Template
    • Template Details
    • Delete Template
  • Cloud Storage
    • List Cloud Storage Providers
    • Connect Cloud Storage Providers
    • Disconnect Cloud Storage Provider
  • Webhooks
    • Get all webhook subscriptions
      GET
    • Create webhook subscription
      POST
    • Get webhook subscription by uuid
      GET
    • Update webhook subscription
      PATCH
    • Delete webhook subscription
      DELETE
  • Branding
    • Get Organization Branding
    • Update Organization Branding
  • Confirmation Page
    • Enable/Disable Signature Confirmation Page
  1. Webhooks

Update webhook subscription

PATCH
/webhook-subscriptions/{id}

Request

Path Params

Body Params application/json

Example
{
    "name": "My Subscription",
    "url": "https://example.com",
    "active": true,
    "triggers": [
        "recipient_completed"
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/webhook-subscriptions/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "My Subscription",
    "url": "https://example.com",
    "active": true,
    "triggers": [
        "recipient_completed"
    ]
}'

Responses

🟢200OK
application/json
Webhook subscription updated
Body

Example
{
    "uuid": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My Subscription",
    "url": "https://example.com",
    "active": true,
    "triggers": [
        "recipient_completed"
    ],
    "workspace_id": "Nq8htXxFssmhRxAPSP4SBP",
    "shared_key": "587c22285F57883db3ee",
    "status": "ACTIVE"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠429429
Modified at 2024-09-17 17:05:10
Previous
Get webhook subscription by uuid
Next
Delete webhook subscription