Skip to main content
PUT
/
webhooks
/
{webhookId}
Update Webhook
curl --request PUT \
  --url https://api.kakiyo.com/v1/webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Updated CRM Integration",
  "url": "https://your-app.com/kakiyo/webhook/v2",
  "secret": "your_new_webhook_secret",
  "events": [
    "linkedin.message.received",
    "prospect.qualification.manual",
    "linkedin.message.sent"
  ],
  "active": true
}'
{
  "id": "webhook_12345abcde",
  "message": "Webhook updated successfully"
}

Authorizations

Authorization
string
header
required

Path Parameters

webhookId
string
required

Body

application/json
name
string
Example:
url
string<uri>
Example:
secret
string
Example:
events
enum<string>[]
Example:
active
boolean
Example:

Response

id
string
Example:
message
string
Example: