Questions tagged [webhooks]

Webhooks are a mechanism to listen and react to events using an HTTP callback: an HTTP POST that occurs when an event occurs.It is an alternative to HTTP polling.

What is it?

Webhooks are a mechanism to listen and react to events using an HTTP callback: an HTTP POST that occurs when an event occurs.It is an alternative to HTTP polling.

Webhooks are a mean to extend the functionality of a service and a way to receive valuable information in near real-time, rather than continually polling a service for that data and receiving nothing valuable most of the time.

How does it work?

A web application implementing WebHooks will POST a message to a user-specified URL when certain events occur. For example, GitHub implements post-receive webhooks that allow users to integrate with a wide variety of services such as Twitter, Basecamp, or a custom script created by the user.

Related tags

  • Use for local hooking that does not use
  • Use for hooking of git events. Use together with only for git services that use webhooks as a replacement for githooks.
  • Use for webhooks used on Github as alternative to githooks.
  • Prefer more specific tags for questions about the use of webhooks in the context of spefic APIS, such as , , etc...

See also

4650 questions
1
vote
1 answer

Get user profile picture - whatsapp smooch

I use smooch to connect a bot to whatsapp. My webhook is configured with includeClient - to get user information. I am wondering if it is possible to get the user profile picture in smooch with the whatsapp business api?
Hodaya Shalom
  • 4,327
  • 12
  • 57
  • 111
1
vote
1 answer

ServiceStack Webhook + ServiceStack.Webhooks.OrmLite Subscription Store Plugin Issue

I have enabled Webhook for my ServiceStack project in which I am using ServiceStack.Webhooks.OrmLite OrmLiteSubscriptionStore to store my subscription everything works fine except Delete operation, it gives below error: { "responseStatus": { …
1
vote
0 answers

How to send card response for outgoing webhook in microsoft teams

This doc said I could use card/image/mention response using outgoing webhook but there is no example other than simple reply. I also tried json response But my bot says Sorry, there was a problem encountered with your request This works! Any other…
JooHyun Jo
  • 11
  • 2
1
vote
1 answer

Webhook listener/receiver security

We are looking at using webhooks from various vendors outside our network. They would publish the event to us. We would be the webhook listener/receiver, not pushing the events. We have done proof of concept of creating an Azure Function to receive…
1
vote
1 answer

Trigger AWS code pipeline with a lambda webhook

I need that my AWS Code pipeline will run only when certain files are checked-in to my bitbucket repository in a certain branch. I manage to achieve this with AWS Code build but as I understand it's not as simple with code pipeline. I understand I…
Or Betzalel
  • 2,427
  • 11
  • 47
  • 70
1
vote
2 answers

Create entities using webhook in dialogflow without using dialogflow UI

Is it possible to create entities using webhook instead of dialogflow UI I have an intent which shows the menu list[pizza, burger, combo] and when someone select an option [suppose pizza] then it will show list of pizza [pepperoni, country special,…
Vikas Patidar
  • 203
  • 1
  • 13
1
vote
0 answers

Azure functions with MongoDB: Too many connections from Azure Function webhook processor

I currently use two Azure functions. One to receive webhook requests and add them to a Azure service bus queue. Another to process the queue. The second function reads from and then writes to a MongoDB Atlas database. My queue processing Azure…
ddriver1
  • 723
  • 10
  • 18
1
vote
1 answer

Mutating a Kubernetes deployment yaml for tolerations doc is missing

I created a mutating admission webhook in my Kubernetes cluster. The api mutation webhook adds tolerations to a Deployment YAML. However, it says an error Internal error occurred: jsonpatch add operation does not apply: doc is missing path:…
Yejin
  • 541
  • 2
  • 15
  • 32
1
vote
2 answers

Problem creating a Strava webhook subscription using Google Apps Script

EDIT 2 - I have now provided my own answer to the issue - any further thoughts or inputs would still be appreciated EDIT 1 - POTENTIAL RELEVANT INFORMATION: I've found this footnote at the bottom of the Content Service documentation page that…
James Hearn
  • 61
  • 10
1
vote
1 answer

X-Event-Key HTTP header not found bitbucket jenkins webhook error

I have configured a multibranch pipeline with bitbucket repository. Have referred cloudbees link for the same . Using Post WebHooks for Bitbucket plugin installed in bitbucket as mentioned in the cloudbees link. But the multi-branch pipeline builds…
Alim Azad
  • 471
  • 2
  • 9
  • 23
1
vote
0 answers

Listen to webhook with Laravel

I am trying to listen to a third-app webhook with Laravel without success. This is what I've tried so far : In my route file : Route::post('https://xxxx/webhook/inspector','webappAdmin\WebhookController@inspector'); (I've added the route in an…
Louis Charles
  • 330
  • 4
  • 18
1
vote
1 answer

Building Webhook to send Recordings info from Zoom to Google App Script - Getting Status 302

I'm building a webhook that will send the completed recordings info from Zoom to a deployed Web App. Webhook will fire when the recording is completed. Below is the complet schema of the event notification: { "event": "string", "payload":…
1
vote
1 answer

Catching Webhook from Zoome

I try to use Google App Script to catch an event notification from Zoom. The payload is JSON and below is my code. function doGet(e) { return HtmlService.createHtmlOutput('doGet request'); } function doPost(e) { try { var input =…
Anh Nguyen
  • 51
  • 6
1
vote
0 answers

WebHook Listener in C# WPF

i need help to make a method to listen webhook in C# WPF. Every time thh webhook recive a post/get I want add on a list to save a file.
1
vote
1 answer

Failed in compare decode() of subprocess with string

My script failed in compare check.decode() == 'TRUE', the result of /healthcheck/bin/captureFailed.sh is TRUE, should enter inside the if, and not fall into the else, any suggetions ? Script python: import requests import json from time import…
Luis Henrique
  • 701
  • 15
  • 36
1 2 3
99
100