1. Webhooks
  • API Overview
  • Registration
    • Create/Update Registration
      POST
    • Delete Registration
      DELETE
    • Get Registrations
      GET
  • Event
    • Get Event
      GET
  • Webhooks
    • Create webhook
      POST
    • Update webhook
      PUT
    • Delete webhook
      DELETE
    • List webhook
      GET
  1. Webhooks

Update webhook

Prod Env
Prod Env
PUT
{{integ_url}}v1/webhooks/{{workspace_id}}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request PUT '{{integ_url}}v1/webhooks/{{workspace_id}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
// webhook_ids :[]
  "name": "registration-updated-webhook",
  "webhook_url": "https://webhook.site/8560a13f-582b-4853-b90b-dbd2b246029b",
  "triggers": ["registration.updated"],
  "active": true,
  "config": {},
  "signing_secret_encrypted": ""
}'
Response Response Example
{}
Modified at 2026-08-20 12:29:45
Previous
Create webhook
Next
Delete webhook
Built with