<?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: Dataset {dataset_id} is not Push API dataset in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/4603072#M59781</link>
    <description>&lt;PRE&gt;https://api.powerbi.com/v1.0/myorg/groups/{group_id}/datasets/{dataset_id}/tables&lt;/PRE&gt;&lt;P&gt;im also facing that problem , and the user who created the report used powerbi desktop , he cant create it using API , is there any solution ?&lt;/P&gt;</description>
    <pubDate>Mon, 10 Mar 2025 10:19:54 GMT</pubDate>
    <dc:creator>sam1231</dc:creator>
    <dc:date>2025-03-10T10:19:54Z</dc:date>
    <item>
      <title>Dataset {dataset_id} is not Push API dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/860275#M21592</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to retrieve records from within a dataset/table and i'm receiving the following response:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "error": {
        "code": "ItemNotFound",
        "message": "Dataset {dataset_id} is not Push API dataset."
    }
}&lt;/PRE&gt;&lt;P&gt;This is the GET url i'm using is:&lt;/P&gt;&lt;PRE&gt;https://api.powerbi.com/v1.0/myorg/groups/{group_id}/datasets/{dataset_id}/tables&lt;/PRE&gt;&lt;P&gt;The dataset that i'm looking to connect to is an existing dataset.&amp;nbsp; What exactly is an "Push API dataset"?&amp;nbsp; Is this a setting from within the dataset itself? I'm fariely inexperieinced in the Power BI API thus far and am looking for a bit of guidance on this prticular issue.&amp;nbsp; Any help would be greatly apprecaited.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 05:24:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/860275#M21592</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-29T05:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dataset {dataset_id} is not Push API dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/860351#M21593</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is you are trying to retrieve the table on the exisiting dataset, which is created from PowerBI Desktop/PowerBI Service. In such case you couldn't able to use this API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This API is supports only &lt;STRONG&gt;Push DataSet&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So what is Push DataSet ?&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Instead of creating the dataset from PowerBI Desktop/Service,you need to create it using API &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/pushdatasets/datasets_postdatasetingroup" target="_blank" rel="noopener"&gt;(Push Datasets - Datasets PostDatasetInGroup)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;POST https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/datasets?defaultRetentionPolicy=basicFIFO

Body:
{
  "name": "SalesMarketing",
  "defaultMode": "Push",
  "tables": [
    {
      "name": "Product",
      "columns": [
        {
          "name": "ProductID",
          "dataType": "Int64"
        },
        {
          "name": "Name",
          "dataType": "string"
        },
        {
          "name": "Category",
          "dataType": "string"
        },
        {
          "name": "IsCompete",
          "dataType": "bool"
        },
        {
          "name": "ManufacturedOn",
          "dataType": "DateTime"
        }
      ]
    }
  ]
}&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 29 Nov 2019 06:34:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/860351#M21593</guid>
      <dc:creator>Jayendran</dc:creator>
      <dc:date>2019-11-29T06:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dataset {dataset_id} is not Push API dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/1019424#M23034</link>
      <description>&lt;P&gt;So there are now 2 ways to create a dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to convert between the two? Or to point an existing report to a API ready dataset ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we still use powerbi desktop, to create/modify the report(s) ?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 10:51:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/1019424#M23034</guid>
      <dc:creator>MichelH</dc:creator>
      <dc:date>2020-04-10T10:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dataset {dataset_id} is not Push API dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/2052068#M31489</link>
      <description>&lt;P&gt;Who the heck creates reports in this way.... what use is this API - the expectation is that it performs the way the OP wants it to. Can someone answer the question properly please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this one doesn't list the tables used within a Tabular Model/dataset then which API should be used?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 01 Sep 2021 18:32:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/2052068#M31489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-01T18:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dataset {dataset_id} is not Push API dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/4603072#M59781</link>
      <description>&lt;PRE&gt;https://api.powerbi.com/v1.0/myorg/groups/{group_id}/datasets/{dataset_id}/tables&lt;/PRE&gt;&lt;P&gt;im also facing that problem , and the user who created the report used powerbi desktop , he cant create it using API , is there any solution ?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 10:19:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dataset-dataset-id-is-not-Push-API-dataset/m-p/4603072#M59781</guid>
      <dc:creator>sam1231</dc:creator>
      <dc:date>2025-03-10T10:19:54Z</dc:date>
    </item>
  </channel>
</rss>

