<?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: Issue with Scheduled Publish Date Display Using CMS Blogs API in Blog, Website &amp; Page Publishing</title>
    <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1184331#M16014</link>
    <description>&lt;P&gt;That sounds frustrating! &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; Scheduled publish dates are crucial for smooth content planning. Have you checked if the API is correctly syncing time zones or caching issues? Sometimes clearing cache or reviewing API documentation helps resolve these glitches. Hope you get it sorted soon! For further details if anyone is interested to know&amp;nbsp; about&amp;nbsp;&lt;A href="https://ppcinebr.com/" target="_blank" rel="noopener"&gt;ppcine&lt;/A&gt; visit here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 02 Aug 2025 12:29:29 GMT</pubDate>
    <dc:creator>SWork8</dc:creator>
    <dc:date>2025-08-02T12:29:29Z</dc:date>
    <item>
      <title>Issue with Scheduled Publish Date Display Using CMS Blogs API</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1183782#M16010</link>
      <description>&lt;P&gt;Hi HubSpot Community,&lt;/P&gt;&lt;P&gt;We're using the CMS Blogs API to post blogs to our HubSpot website. The blogs are being created successfully, and we’re now working on scheduling them via the API.&lt;/P&gt;&lt;P&gt;When we set the publishDate using the API, the blog post initially shows the correct scheduled date in the UI. However, once the scheduled time has passed, the interface displays this instead:&lt;/P&gt;&lt;P&gt;Scheduled for [missing {{scheduledPublishDate}} value]&lt;/P&gt;&lt;P&gt;Has anyone else encountered this issue? Are we missing a specific field or format in the API request to ensure the scheduled publish date is retained and displayed correctly?&lt;/P&gt;&lt;P&gt;Any insights or suggestions would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 03:59:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1183782#M16010</guid>
      <dc:creator>developer12</dc:creator>
      <dc:date>2025-08-01T03:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Scheduled Publish Date Display Using CMS Blogs API</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1184016#M16013</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/966401"&gt;@developer12&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H2 class="lia-thread-subject"&gt;Issue with Scheduled Publish Date Display Using CMS Blogs API&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Yes, this is a known behavior. After a scheduled blog post goes live, &lt;CODE&gt;{{scheduledPublishDate}}&lt;/CODE&gt; is no longer available — which is why you see:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Scheduled for [missing {{scheduledPublishDate}} value]&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Solution:&lt;/STRONG&gt;&lt;BR /&gt;Instead of using &lt;CODE&gt;{{scheduledPublishDate}}&lt;/CODE&gt;, simply use:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;{{ content.publishDate }}&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;This displays the actual publish date and works whether the post was scheduled or published right away.&lt;BR /&gt;Here’s how you can correctly schedule a blog post via API:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;curl --request POST \&lt;BR /&gt;  --url &lt;A href="https://api.hubapi.com/cms/v3/blogs/posts/schedule" target="_blank"&gt;https://api.hubapi.com/cms/v3/blogs/posts/schedule&lt;/A&gt; \&lt;BR /&gt;  --header 'authorization: Bearer YOUR_ACCESS_TOKEN' \&lt;BR /&gt;  --header 'content-type: application/json' \&lt;BR /&gt;  --data '{&lt;BR /&gt;    "publishDate": "2025-08-01T12:30:22.425Z",&lt;BR /&gt;    "id": "post_id"&lt;BR /&gt;  }'&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;This schedules the post and ensures &lt;CODE&gt;{{ content.publishDate }}&lt;/CODE&gt; reflects the correct time.&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 13:21:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1184016#M16013</guid>
      <dc:creator>WebGuruz_Tech</dc:creator>
      <dc:date>2025-08-01T13:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Scheduled Publish Date Display Using CMS Blogs API</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1184331#M16014</link>
      <description>&lt;P&gt;That sounds frustrating! &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; Scheduled publish dates are crucial for smooth content planning. Have you checked if the API is correctly syncing time zones or caching issues? Sometimes clearing cache or reviewing API documentation helps resolve these glitches. Hope you get it sorted soon! For further details if anyone is interested to know&amp;nbsp; about&amp;nbsp;&lt;A href="https://ppcinebr.com/" target="_blank" rel="noopener"&gt;ppcine&lt;/A&gt; visit here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Aug 2025 12:29:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Issue-with-Scheduled-Publish-Date-Display-Using-CMS-Blogs-API/m-p/1184331#M16014</guid>
      <dc:creator>SWork8</dc:creator>
      <dc:date>2025-08-02T12:29:29Z</dc:date>
    </item>
  </channel>
</rss>

