Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago

Power BI push semantic dataset.

I have created a push semantic dataset, and i pushed record into it using Rest API's in c#. But when i try to get table from it, it keep returns me null column and rows, the response is this :

{
    "odatacontext": null,
    "value": [
        {
            "name": "RealTimeData",
            "columns": null,
            "rows": null,
            "measures": null,
            "isHidden": null,
            "description": null,
            "source": []
        }
    ]
}
is any one has any idea, how to get table from push semantic dataset, i am using service principal authenticated web api, which has all the read and write rights.

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

    Service body profiles may not apply to some dataset configurations. It is critical to verify that dataset settings are not affected by these limitations.

    There may be an issue with the way the dataset is populated or the way the API interprets the structure because the response indicates null values for columns and rows. Review the structure of the dataset in the Power BI service to confirm that it meets your expectations and that the data was pushed successfully.

    Below is the link will help you:

    Power BI REST APIs push semantic model limitations - Power BI | Microsoft Learn

    Best Regards,

    Xianda Tang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks Anonymous  for your reply. I have verified the dataset model, it is getting populated correctly, as I mentioned I had pushed the records in it which are visible in Report and Dashboard as well. Is there any setting which needed to changed?