This topic was automatically generated from Slack. You can find the original thread here.
Hi, I’m trying to use Connect triggers to call a webhook endpoint in my backend application. However, more often than not, the webhook never reaches my backend. Interestingly, I can see the events that should have triggered the webhook when I query the /events
endpoint of my deployed trigger, and when I query /webhooks
, my webhook is listed. But nothing happens. I may be misconfiguring something—could someone take a quick look?
Output of /v1/connect/<project_id>/deployed-triggers/<deployed_trigger_id>
:
{
"data" : {
"active" : true,
"component_id" : "sc_x0i3yNe",
"configurable_props" : [
{
"app" : "google_calendar",
"name" : "googleCalendar",
"type" : "app"
},
{
"name" : "db",
"type" : "$.service.db"
},
{
"default" : [
"primary"
],
"description" : "Select one or more calendars to watch (defaults to the primary calendar)",
"label" : "Calendars",
"name" : "calendarIds",
"optional" : true,
"remoteOptions" : true,
"type" : "string[]"
},
{
"default" : false,
"description" : "Emit new events only, and not updates to existing events (defaults to `false`)",
"label" : "Emit only for new events",
"name" : "newOnly",
"optional" : true,
"type" : "boolean"
},
{
"name" : "http",
"type" : "$.interface.http"
},
{
"description" : "The Google Calendar API requires occasional renewal of push notification subscriptions. ****This runs in the background, so you should not need to modify this schedule****.",
"label" : "Push notification renewal schedule",
"name" : "timer",
"static" : {
"intervalSeconds" : 82080
},
"type" : "$.interface.timer"
}
],
"configured_props" : {
"calendarIds" : [
"primary"
],
"db" : {
"type" : "$.service.db"
},
"googleCalendar" : {
"authProvisionId" : "apn_xxx" // redacted
},
"http" : {
"endpoint_url" : "https://xxx.m.pipedream.net" // redacted
},
"newOnly" : false,
"timer" : {
"cron" : null,
"interval_seconds" : 82080
}
},
"created_at" : 1750835973,
"id" : "xxx", // redacted
"name" : "xxx", // redacted
"name_slug" : "xxx", // redacted
"owner_id" : "exu_MLiKQ4",
"updated_at" : 1750835973
}
}