<@ULVA73B9P> I created a custom webhook to notify ...
# marvin-in-the-wild
r
@Marvin I created a custom webhook to notify my google chat when any pipeline goes into Failed or completed. Unfortunately it doesnt work. I put a name and I put the webhook url. Why it doesnt work? Should i check something?
m
It appears that you are having trouble with a custom webhook for Google Chat notifications when Prefect pipelines fail or complete. As per the available documentation, there are a few things you can check: 1. Verify if you have set up the webhook correctly. You can list all configured webhooks in your workspace using the commands:
Copy code
shell
   prefect cloud webhook ls   # list all webhooks
   prefect cloud webhook get <webhook-id>  # get webhook by ID
2. If you need to disable or enable a webhook, you can use:
Copy code
shell
   prefect cloud webhook toggle <webhook-id>  # disable/enable webhook
Ensure your webhook is enabled. 3. In some cases, it would be helpful to check the Prefect Release Notes in case there are updates or relevant information to your issue: RELEASE-NOTES.md on GitHub 4. Since the detailed documentation on integrating with Google Chat or specific guidance on troubleshooting webhook issues was not found in the initial search, please verify your webhook URL is correct, properly named, and it adheres to Google Chat webhook format. For more detailed assistance, you might want to reach out to Prefect's support or check the Prefect community forum for specific cases related to notifications and Google Chat integration. Here are the links to the relevant documentation for webhooks in Prefect: - Guide to Prefect Webhooks If these steps don't help resolve the issue, please provide more details or error messages, if any, to offer further assistance.