<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Error updating workflow, webhook not found? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/5271#M1734</link>
    <description>&lt;P&gt;I have no idea what this error means or what it could mean. When I'm trying to save a workflow I get a popup saying this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/289iB6BDA5DBF9C4A48E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Apr 2023 19:52:55 GMT</pubDate>
    <dc:creator>jonathan-dufaul</dc:creator>
    <dc:date>2023-04-25T19:52:55Z</dc:date>
    <item>
      <title>Error updating workflow, webhook not found?</title>
      <link>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/5271#M1734</link>
      <description>&lt;P&gt;I have no idea what this error means or what it could mean. When I'm trying to save a workflow I get a popup saying this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/289iB6BDA5DBF9C4A48E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 19:52:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/5271#M1734</guid>
      <dc:creator>jonathan-dufaul</dc:creator>
      <dc:date>2023-04-25T19:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error updating workflow, webhook not found?</title>
      <link>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/5272#M1735</link>
      <description>&lt;P&gt;Turns out there was a webhook but databricks had a bug that made it so it didn't show up in the UI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way to find out the offending portion is to look at the json for the job:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/283iEA8B67F48C64D8ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/284i4151E04494E27CB7/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;The ui is convinced that doesn't exist so you have to use the jobs API to fix it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;import requests
&amp;nbsp;
api_base = "https://adb-[redacted].azuredatabricks.net/api/2.0"
databricks_service = "the_o=_part_of_the_url"
&amp;nbsp;
# let databricks know the authorization and that we're submitting json
headers = {
    "Content-Type": "application/json",
    "Authorization": f"Bearer {databricks_token}",
}
&amp;nbsp;
# create data for request
data = {
    "job_id": {job_id},
    "fields_to_remove": ["webhook_notifications"],
}
&amp;nbsp;
&amp;nbsp;
# submit the rerquest
update_jobs_url = f"{api_base}/jobs/update?o={databricks_service}"
&amp;nbsp;
requests.post(update_jobs_url, headers=headers, json=data).text&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;fix your stuff databricks.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 22:05:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/5272#M1735</guid>
      <dc:creator>jonathan-dufaul</dc:creator>
      <dc:date>2023-04-25T22:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error updating workflow, webhook not found?</title>
      <link>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/45328#M27850</link>
      <description>&lt;P&gt;I had the same issue, thanks for the info! Apparently it's also possible to fix it by removing all the actual notification in the interface (the bugged one is not displayed, but if you remove everything for some reason it removes the bugged one too). I just had to save and put it back after and it worked&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 13:39:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-updating-workflow-webhook-not-found/m-p/45328#M27850</guid>
      <dc:creator>Robin_LOCHE</dc:creator>
      <dc:date>2023-09-19T13:39:54Z</dc:date>
    </item>
  </channel>
</rss>

