Webhooks
Patch webhook
Partially update a webhook (URL, topics, active state).
PATCH
Patch webhook
Authorizations
Path Parameters
Body
application/json
Last modified on June 29, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Partially update a webhook (URL, topics, active state).
curl --request PATCH \
--url https://api.dualentry.com/public/v2/webhooks/{webhook_uuid}/ \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true
}
'{
"uuid": "<string>",
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true,
"created_at": "<string>",
"last_modified_at": "<string>",
"disabled_at": "<string>",
"disabled_reason": ""
}Was this page helpful?
curl --request PATCH \
--url https://api.dualentry.com/public/v2/webhooks/{webhook_uuid}/ \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true
}
'{
"uuid": "<string>",
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true,
"created_at": "<string>",
"last_modified_at": "<string>",
"disabled_at": "<string>",
"disabled_reason": ""
}