<?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: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream in Eventstream</title>
    <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662857#M461</link>
    <description>&lt;P&gt;Thank you, will ask if any question further&lt;/P&gt;</description>
    <pubDate>Tue, 22 Apr 2025 10:13:44 GMT</pubDate>
    <dc:creator>PrachiJain_2025</dc:creator>
    <dc:date>2025-04-22T10:13:44Z</dc:date>
    <item>
      <title>Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4640491#M421</link>
      <description>&lt;P class=""&gt;Hi all,&lt;/P&gt;&lt;P class=""&gt;I'm working on cloning an existing Fabric Eventstream using the Fabric REST APIs. The goal is to automate the process of duplicating a working Eventstream and publishing it with a new display name.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;What I did:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Used the /getDefinition API to extract the full Eventstream structure.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Decoded all payload parts (such as eventstream.json, platform.json, etc.).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Modified the displayName in platform.json to differentiate the cloned stream.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Re-encoded the parts to Base64 and used the /items POST API to create a new Eventstream.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;STRONG&gt;What happens:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;The initial response is 202 Accepted, and I receive a Location header.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;I poll the Location URL until I get a 200 OK response.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;The final response shows "status": "Succeed".&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;STRONG&gt;The issue:&lt;/STRONG&gt; Despite a successful status, the cloned Eventstream appears blank in the Fabric UI — no sources, streams, or destinations are shown.&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P class=""&gt;Are there additional validation checks or metadata required for a proper Eventstream publish?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Do we need to explicitly include or transform certain properties beyond what's returned by /getDefinition?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Are there known limitations or issues with using the Eventstream API for cloning and provisioning?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;I’d appreciate any help or insights from others who have successfully implemented this or faced a similar issue. I can provide sanitized code snippets if needed.&lt;/P&gt;&lt;P class=""&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 08:05:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4640491#M421</guid>
      <dc:creator>PrachiJain_2025</dc:creator>
      <dc:date>2025-04-07T08:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4642885#M423</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="791098" data-lia-user-login="PrachiJain_2025" class="lia-mention lia-mention-user"&gt;PrachiJain_2025&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Replace any original itemId, workspaceId, or dataConnectionId with those relevant to the new workspace/resources.&lt;/LI&gt;
&lt;LI&gt;The Fabric UI might not immediately reflect the cloned Eventstream due to caching or a delay in provisioning the underlying resources (e.g., Event Hubs namespace).&lt;/LI&gt;
&lt;LI&gt;The Eventstream REST API might not fully support cloning complex configurations (e.g., transformations or enhanced capabilities) in a single POST operation, requiring additional steps.&lt;/LI&gt;
&lt;LI&gt;Eventstreams rely on connections to sources and destinations (e.g., Azure Event Hubs, KQL Databases). If the cloned definition retains original workspace-specific IDs or connection references that don’t exist in the new context, Fabric might silently discard those components.&lt;/LI&gt;
&lt;LI&gt;After calling /getDefinition, ensure the response includes all expected parts: eventstream.json (defining sources, destinations, operators, streams) and platform.json (metadata like displayName).&lt;/LI&gt;
&lt;LI&gt;Event streams often link to external resources via IDs (e.g., dataConnectionId for Event Hubs or itemId for a Lakehouse). If these IDs are workspace-specific, reusing them in a new Eventstream could cause Fabric to ignore those components.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Reference :&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/eventstream-rest-api" target="_blank"&gt;https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/eventstream-rest-api&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt; color: black;"&gt;&lt;SPAN&gt;Did I answer your question? Then please mark my post as the solution.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 10:35:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4642885#M423</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-04-08T10:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4652910#M439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="791098" data-lia-user-login="PrachiJain_2025" class="lia-mention lia-mention-user"&gt;PrachiJain_2025&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 05:44:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4652910#M439</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-04-15T05:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662103#M457</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="791098" data-lia-user-login="PrachiJain_2025" class="lia-mention lia-mention-user"&gt;PrachiJain_2025&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 04:40:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662103#M457</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-04-22T04:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662857#M461</link>
      <description>&lt;P&gt;Thank you, will ask if any question further&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 10:13:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662857#M461</guid>
      <dc:creator>PrachiJain_2025</dc:creator>
      <dc:date>2025-04-22T10:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cloning and Publishing Eventstream via Fabric API — Response 202 but Blank Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662868#M462</link>
      <description>&lt;P&gt;Thank you, will ask if any question further&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 10:14:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Cloning-and-Publishing-Eventstream-via-Fabric-API-Response-202/m-p/4662868#M462</guid>
      <dc:creator>PrachiJain_2025</dc:creator>
      <dc:date>2025-04-22T10:14:59Z</dc:date>
    </item>
  </channel>
</rss>

