<?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 Re: How to stop receiving webhooks after a customer churns in HubSpot? in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/902061#M70126</link>
    <description>&lt;P&gt;Still not&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jan 2024 06:37:53 GMT</pubDate>
    <dc:creator>j4y</dc:creator>
    <dc:date>2024-01-08T06:37:53Z</dc:date>
    <item>
      <title>How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/787353#M63520</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have a question regarding webhook integration with HubSpot. When a customer churns from our side and is removed from our system, we would like to know if there is an endpoint in HubSpot that allows us to uninstall the application only for that particular customer.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Currently, we receive a large number of webhooks from HubSpot every day for customers who have churned, and this is affecting our infrastructure, finances, and environmental impact.&lt;BR /&gt;&lt;BR /&gt;We found a post from 2020 (&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/What-happens-when-customer-deletes-their-account-from/m-p/369902" target="_new"&gt;https://community.hubspot.com/t5/APIs-Integrations/What-happens-when-customer-deletes-their-account-from/m-p/369902&lt;/A&gt;) discussing the same issue.&lt;BR /&gt;However, it states that even if we delete the refresh token, HubSpot continues to send webhooks.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Is this still the case? We don't want to risk losing the refresh token if there is another solution available.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help or suggestions you can provide.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 17:11:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/787353#M63520</guid>
      <dc:creator>j4y</dc:creator>
      <dc:date>2023-04-27T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/787629#M63536</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/560380"&gt;@j4y&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;To stop receiving webhooks for a particular customer who has churned, you can use the HubSpot's "unsubscribe" endpoint. This endpoint allows you to unsubscribe the customer's email address or a specific event subscription from receiving webhooks.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Identify the customer who has churned and whose webhooks you want to unsubscribe.&lt;BR /&gt;Use the "unsubscribe" endpoint to unsubscribe the customer's email address or a specific event subscription.&lt;BR /&gt;The "unsubscribe" endpoint requires the email address or event subscription ID that you want to unsubscribe. &lt;BR /&gt;&lt;BR /&gt;Here is an example of how you can unsubscribe a customer's email address:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="ruby"&gt;DELETE https://api.hubapi.com/webhooks/v1/:appId/subscriptions/:subscriptionId/unsubscribe?email=:email
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Replace &lt;CODE&gt;:appId&lt;/CODE&gt; with your HubSpot application ID, &lt;CODE&gt;:subscriptionId&lt;/CODE&gt; with the subscription ID that you want to unsubscribe, and &lt;CODE&gt;:email&lt;/CODE&gt; with the email address of the customer you want to unsubscribe.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Alternatively, if you don't have the subscription ID, you can also use the customer's email address to unsubscribe from all events:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="ruby"&gt;DELETE https://api.hubapi.com/webhooks/v1/:appId/unsubscribe/:email
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Replace &lt;CODE&gt;:appId&lt;/CODE&gt; with your HubSpot application ID, and &lt;CODE&gt;:email&lt;/CODE&gt; with the email address of the customer you want to unsubscribe.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;By using this endpoint, you can stop receiving webhooks for a particular customer who has churned without affecting other customers.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 08:54:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/787629#M63536</guid>
      <dc:creator>himanshurauthan</dc:creator>
      <dc:date>2023-04-28T08:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/868447#M68450</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/20405"&gt;@himanshurauthan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have implemented a solution using the endpoint you provided and it looks like the URL is unreachable. We also looked for clues in the official documentation with no success for a dedicated endpoint for &lt;STRONG&gt;unsubscribing.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help us with further details or another working endpoint ?&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 08:32:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/868447#M68450</guid>
      <dc:creator>boubacardabo</dc:creator>
      <dc:date>2023-10-23T08:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/877951#M68989</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/20405"&gt;@himanshurauthan&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;As noted by &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/651831"&gt;@boubacardabo&lt;/a&gt;, we have attempted to utilize the various endpoints you have provided. However, we consistently receive 404 errors in the API responses, and the hooks continue to proliferate.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We aim to establish a "churn" flow on our side, incorporate this request into it, and streamline the reception of hooks to cleanse our application. Currently, we are facing a substantial number of "404" errors returned to HubSpot due to this issue.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2023 14:30:24 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/877951#M68989</guid>
      <dc:creator>j4y</dc:creator>
      <dc:date>2023-11-10T14:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/883690#M69271</link>
      <description>&lt;P&gt;This looks like the v1 API, I suppose it must be deprecated&lt;BR /&gt;&lt;BR /&gt;The v3 API does not provide anything more than what the UI does, it's really a useless API in that sense&lt;BR /&gt;&lt;BR /&gt;I wonder, if I delete a users' token, will I stop receiving its webhook events?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 09:55:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/883690#M69271</guid>
      <dc:creator>Julien_hublead</dc:creator>
      <dc:date>2023-11-23T09:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/883693#M69272</link>
      <description>&lt;P&gt;I guess not&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2023-11-23 à 10.58.14.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/103818i7CD4D8981DD58CB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2023-11-23 à 10.58.14.png" alt="Capture d’écran 2023-11-23 à 10.58.14.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 09:59:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/883693#M69272</guid>
      <dc:creator>Julien_hublead</dc:creator>
      <dc:date>2023-11-23T09:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/900534#M70085</link>
      <description>&lt;P&gt;Hi, did you find a solution?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 07:31:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/900534#M70085</guid>
      <dc:creator>mmaddiona</dc:creator>
      <dc:date>2024-01-04T07:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/902061#M70126</link>
      <description>&lt;P&gt;Still not&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 06:37:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/902061#M70126</guid>
      <dc:creator>j4y</dc:creator>
      <dc:date>2024-01-08T06:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop receiving webhooks after a customer churns in HubSpot?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/902087#M70131</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/560380"&gt;@j4y&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;can we get in touch with some technical people inside the team, to discuss this thing?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 08:27:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-stop-receiving-webhooks-after-a-customer-churns-in/m-p/902087#M70131</guid>
      <dc:creator>mmaddiona</dc:creator>
      <dc:date>2024-01-08T08:27:50Z</dc:date>
    </item>
  </channel>
</rss>

