<?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: Webhook Subscription to Meeting/Engagement Creation in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Webhook-Subscription-to-Meeting-Engagement-Creation/m-p/1113714#M80529</link>
    <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/904425"&gt;@Shamita&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; I was able to set up a quick example using the property you mentioned.&lt;/P&gt;
&lt;P&gt;Steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Verify the property exists&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;curl --request GET \
  --url 'https://api.hubapi.com/crm/v3/properties/0-1/engagements_last_meeting_booked?archived=false' \
  --header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/LI-CODE&gt;&lt;LI-CODE lang="javascript"&gt;HTTP 200

{
  "updatedAt": "2022-05-27T20:44:36.163Z",
  "createdAt": "2020-06-30T15:57:37.033Z",
  "name": "engagements_last_meeting_booked",
  "label": "Date of last meeting booked in meetings tool",
  "type": "datetime",
  "fieldType": "date",
  "description": "The date of the last meeting that has been scheduled by a contact through the meetings tool. If multiple meetings have been scheduled, the date of the last chronological meeting in the timeline is shown.",
  "groupName": "contact_activity",
  "options": [],
  "displayOrder": 6,
  "calculated": false,
  "externalOptions": false,
  "hasUniqueValue": false,
  "hidden": false,
  "hubspotDefined": true,
  "modificationMetadata": {
    "archivable": true,
    "readOnlyDefinition": true,
    "readOnlyValue": true
  },
  "formField": false,
  "dataSensitivity": "non_sensitive"
}&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Set up the Webhook. I used a Private App&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-24 at 10.41.23@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/139357i85E44B690E2B13C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-24 at 10.41.23@2x.png" alt="CleanShot 2025-02-24 at 10.41.23@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;One thing I've noticed when setting the “Which properties” section, it's easier to simply paste (cmd + v) in the property name (or internal value) rather than searching the dropdown for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps get you moving forward! — Jaycee&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 17:49:58 GMT</pubDate>
    <dc:creator>Jaycee_Lewis</dc:creator>
    <dc:date>2025-02-24T17:49:58Z</dc:date>
    <item>
      <title>Webhook Subscription to Meeting/Engagement Creation</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Webhook-Subscription-to-Meeting-Engagement-Creation/m-p/1112971#M80498</link>
      <description>&lt;P&gt;Looking for something similar to what is described in this post from 5 years ago:&amp;nbsp;&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/Web-hook-trigger-for-Engagement-events-like-Meeting-etc/m-p/313903" target="_blank"&gt;https://community.hubspot.com/t5/APIs-Integrations/Web-hook-trigger-for-Engagement-events-like-Meeting-etc/m-p/313903&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to receive notifications of meetings created/scheduled between sales rep and lead through Hubspot. The post above&amp;nbsp; recommends subscribing to Contact property `&lt;SPAN&gt;engagements_last_meeting_booked` but I do not believe this is an available property currently. Is there some other way to receive a&amp;nbsp; notification that a meeting has been scheduled?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2025 17:40:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Webhook-Subscription-to-Meeting-Engagement-Creation/m-p/1112971#M80498</guid>
      <dc:creator>Shamita</dc:creator>
      <dc:date>2025-02-22T17:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Webhook Subscription to Meeting/Engagement Creation</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Webhook-Subscription-to-Meeting-Engagement-Creation/m-p/1113714#M80529</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/904425"&gt;@Shamita&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; I was able to set up a quick example using the property you mentioned.&lt;/P&gt;
&lt;P&gt;Steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Verify the property exists&lt;BR /&gt;&lt;LI-CODE lang="javascript"&gt;curl --request GET \
  --url 'https://api.hubapi.com/crm/v3/properties/0-1/engagements_last_meeting_booked?archived=false' \
  --header 'authorization: Bearer YOUR_ACCESS_TOKEN'&lt;/LI-CODE&gt;&lt;LI-CODE lang="javascript"&gt;HTTP 200

{
  "updatedAt": "2022-05-27T20:44:36.163Z",
  "createdAt": "2020-06-30T15:57:37.033Z",
  "name": "engagements_last_meeting_booked",
  "label": "Date of last meeting booked in meetings tool",
  "type": "datetime",
  "fieldType": "date",
  "description": "The date of the last meeting that has been scheduled by a contact through the meetings tool. If multiple meetings have been scheduled, the date of the last chronological meeting in the timeline is shown.",
  "groupName": "contact_activity",
  "options": [],
  "displayOrder": 6,
  "calculated": false,
  "externalOptions": false,
  "hasUniqueValue": false,
  "hidden": false,
  "hubspotDefined": true,
  "modificationMetadata": {
    "archivable": true,
    "readOnlyDefinition": true,
    "readOnlyValue": true
  },
  "formField": false,
  "dataSensitivity": "non_sensitive"
}&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Set up the Webhook. I used a Private App&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CleanShot 2025-02-24 at 10.41.23@2x.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/139357i85E44B690E2B13C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CleanShot 2025-02-24 at 10.41.23@2x.png" alt="CleanShot 2025-02-24 at 10.41.23@2x.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;One thing I've noticed when setting the “Which properties” section, it's easier to simply paste (cmd + v) in the property name (or internal value) rather than searching the dropdown for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps get you moving forward! — Jaycee&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 17:49:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Webhook-Subscription-to-Meeting-Engagement-Creation/m-p/1113714#M80529</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-02-24T17:49:58Z</dc:date>
    </item>
  </channel>
</rss>

