<?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: Imports - Post Import In Group with Postman in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3469104#M44862</link>
    <description>&lt;P&gt;Hey, I also trying the same. cant figure out the body that needs to go and what all details are from do I get those details. Any help will he great!&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2023 14:42:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-10-10T14:42:48Z</dc:date>
    <item>
      <title>Imports - Post Import In Group with Postman</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3254105#M42833</link>
      <description>&lt;P&gt;Hi.&amp;nbsp; I'm thoroughly stumped here...would appreciate any help anyone could provide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to test out using &lt;A href="https://learn.microsoft.com/en-us/rest/api/power-bi/imports/post-import-in-group" target="_self"&gt;this API&lt;/A&gt; in Postman - specifically looking to import the JSON definition of a dataflow into a workspace.&amp;nbsp; The documentation includes a sample request for doing exactly that.&amp;nbsp; Here's the request and body from the documentation:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;POST https://api.powerbi.com/v1.0/myorg/groups/cfafbeb1-8037-4d0c-896e-a46fb27ff229/imports?datasetDisplayName=model.json&amp;amp;nameConflict=Abort&amp;amp;skipReport=True

{
  "value": "--f05e5244-f876-43b9-bc87-d71598f6b32a Content-Disposition: form-data name=model.json; filename=model.json Content-Type: application/json [Contents of Model JSON Encoded] --f05e5244-f876-43b9-bc87-d71598f6b32a--"
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's what I'm not understanding&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;the documentation doesn't mention anything about "value" for the body (?)&lt;/LI&gt;
&lt;LI&gt;what are the strings "f05e5244-f876-43b9-bc87-d71598f6b32a" in the value?&amp;nbsp; (I'm guessing identifier of the json document if I got the link from OneDrive, maybe?)&lt;/LI&gt;
&lt;LI&gt;do I need to put anything in place of "[Contents of Model JSON Encoded]"?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I've been trying this for about six hours and all I've gotten is 400: Bad Request, except once when I thought I might have broken Power BI, but that's another story...&amp;nbsp; Here's my current iteration of guesswork&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="littlemojopuppy_1-1685052994053.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/920189iC931B8F50254A553/image-size/large?v=v2&amp;amp;px=999" role="button" title="littlemojopuppy_1-1685052994053.png" alt="littlemojopuppy_1-1685052994053.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Body has three parts: my most recent actual attempt, and remarked out is straight out of the documentation for comparison and what ChatGPT said to try (I know...that's cheating&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":crying_face:"&gt;😢&lt;/span&gt; ).&amp;nbsp; What's striked out in black is the URL of the JSON document from OneDrive and in red is the unique identifier of the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I feel like I'm either missing something really small or the whole thing is just plain wrong.&amp;nbsp; Either way, if anyone could provide some help I would certainly appreciate it.&amp;nbsp; Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 22:19:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3254105#M42833</guid>
      <dc:creator>littlemojopuppy</dc:creator>
      <dc:date>2023-05-25T22:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Imports - Post Import In Group with Postman</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3258711#M42867</link>
      <description>&lt;UL&gt;
&lt;LI&gt;To import a file, specify the content type&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;multipart/form-data&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in the request headers &lt;EM&gt;&lt;STRONG&gt;and encode the file as&amp;nbsp;&lt;A href="https://www.w3.org/TR/html401/interact/forms.html" data-linktype="external" target="_blank"&gt;form data&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;in the request body.&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="markup"&gt;what are the strings "f05e5244-f876-43b9-bc87-d71598f6b32a" in the value&lt;/LI-CODE&gt;
&lt;P&gt;Those are arbitrary strings that you use in batch APIs to identify the different pieces of payload and their borders.&amp;nbsp; This probably means that you can upload multiple JSON files with one call.&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 03:43:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3258711#M42867</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-05-30T03:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Imports - Post Import In Group with Postman</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3264718#M42917</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 22:17:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3264718#M42917</guid>
      <dc:creator>littlemojopuppy</dc:creator>
      <dc:date>2023-06-01T22:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Imports - Post Import In Group with Postman</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3469104#M44862</link>
      <description>&lt;P&gt;Hey, I also trying the same. cant figure out the body that needs to go and what all details are from do I get those details. Any help will he great!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 14:42:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Imports-Post-Import-In-Group-with-Postman/m-p/3469104#M44862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-10T14:42:48Z</dc:date>
    </item>
  </channel>
</rss>

