© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•13mo ago•
13 replies
anta

Database Webhook not working with Discord

Hi, ive just followed the doc and executed this query :
create trigger "my_webhook" after insert
on "public"."todos" for each row
execute function "supabase_functions"."http_request"(
  'https://discord.com/api/webhooks/myhookid',
  'POST',
  '{"Content-Type":"application/json"}',
  '{}',
  '1000'
);
create trigger "my_webhook" after insert
on "public"."todos" for each row
execute function "supabase_functions"."http_request"(
  'https://discord.com/api/webhooks/myhookid',
  'POST',
  '{"Content-Type":"application/json"}',
  '{}',
  '1000'
);


after insterting a row, nothing happened.
i tried to create webhook using supabase UI (/integrations), same thing.

i verified if webhook url was correct with powershell command :
$Headers = @{ "Content-Type" = "application/json" }; $Body = @{ content = "Test webhook PowerShell" } | ConvertTo-Json; Invoke-WebRequest -Uri "https://discord.com/api/webhooks/myhookid" -Method POST -Headers $Headers -Body $Body
$Headers = @{ "Content-Type" = "application/json" }; $Body = @{ content = "Test webhook PowerShell" } | ConvertTo-Json; Invoke-WebRequest -Uri "https://discord.com/api/webhooks/myhookid" -Method POST -Headers $Headers -Body $Body

and i correctly received
Test webhook PowerShell
Test webhook PowerShell


any idea ?
thanks for helping
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Database webhook not firing
SupabaseSSupabase / help-and-questions
4y ago
Database Webhook with body
SupabaseSSupabase / help-and-questions
4y ago
How to send database webhook to discord with supabase
SupabaseSSupabase / help-and-questions
3y ago
(solved) Webhook not working
SupabaseSSupabase / help-and-questions
4y ago