Webhooks
Create webhook
Register a webhook endpoint for events. The signing secret is returned once and never shown again.
POST
Create webhook
Authorizations
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.
Register a webhook endpoint for events. The signing secret is returned once and never shown again.
curl --request POST \
--url https://api.dualentry.com/public/v2/webhooks/ \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"topics": [
"<string>"
]
}
'{
"uuid": "<string>",
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true,
"created_at": "<string>",
"last_modified_at": "<string>",
"secret": "<string>",
"disabled_at": "<string>",
"disabled_reason": ""
}Was this page helpful?
curl --request POST \
--url https://api.dualentry.com/public/v2/webhooks/ \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"topics": [
"<string>"
]
}
'{
"uuid": "<string>",
"url": "<string>",
"topics": [
"<string>"
],
"is_active": true,
"created_at": "<string>",
"last_modified_at": "<string>",
"secret": "<string>",
"disabled_at": "<string>",
"disabled_reason": ""
}