Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(triggers): clarify Notion webhook signing secret vs verification_…
…token

Update placeholder and description to distinguish the signing secret
(used for HMAC-SHA256 signature verification) from the verification_token
(one-time challenge echoed during initial setup).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Apr 6, 2026
commit 0a77dadd9f87bf0f39443a2b7811b54359fb9708
4 changes: 2 additions & 2 deletions apps/sim/triggers/notion/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export function buildNotionExtraFields(triggerId: string): SubBlockConfig[] {
id: 'webhookSecret',
title: 'Webhook Secret',
type: 'short-input',
placeholder: 'Enter your verification_token for signature verification',
placeholder: 'Enter your Notion webhook signing secret',
description:
'The verification_token from Notion, used to validate X-Notion-Signature headers on incoming webhooks.',
'The signing secret from your Notion integration settings page, used to verify X-Notion-Signature headers. This is separate from the verification_token used during initial setup.',
password: true,
required: false,
mode: 'trigger',
Expand Down
Loading