Webhook is not triggering

Sony Gunda 0 Reputation points
2024-09-11T06:12:52.7833333+00:00

We have an Azure function app. We have a Webhook which was triggering till yesterday. But today the webhook is not triggering. when I Debug the code, everything is working fine, but it i snot triggering on the event.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Amira Bedhiafi 41,121 Reputation points Volunteer Moderator
    2025-07-02T18:25:34.5233333+00:00

    Hello Sony !

    Thank you for posting on Microsoft Learn.

    Go to the Function App > Monitoring > Logs (Application Insights) and check if any requests are coming in at all.

    If yes, do you see errors or 400/500 response codes ? if no requests are coming in, maybe the issue is external.

    If your function requires an API key (function or host key), has the key expired or been rotated?

    You can check the expected x-functions-key is still valid and properly sent by the webhook.

    Try to use curl or Postman to simulate a call:

    curl -X POST https://<your-function-url> -H "x-functions-key: <your-key>" -d '{}'
    

    If it succeeds manually but fails from the external system, the issue then lies with the webhook provider.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.