Forum Discussion

HeetParkhiya's avatar
HeetParkhiya
Frequent Visitor
7 months ago
Solved

Fabric Create report API

Hello Team,

I am trying to create report using the fabric rest api and it throws me the "Content provider provided invalid package content stream".

Here is my report.json schema :

{
        "themeCollection": {
            "baseTheme": {
            "name": "Default",
            "type": "SharedResources",
            "reportVersionAtImport": {
                "visual": "3.0.0",
                "page": "3.0.0",
                "report": "3.0.0"
            }
        }
     }
    }

definition.pbir schema:

{
    "version": "2.0",
    "datasetReference": {
      "byConnection": {
        "connectionString": "semanticModelId=valid-guid"
      }
     }
    }

both of the above json are getting encoded and being passed in the request body and I would like some help on it, where the error is occuring report.json or definition.pbir syntax? how do I resolve it?
{
        "displayName": report_name,
        "definition": {
            "parts": [
                {
                    "path": "report.json",
                    "payload": b64(report_json),
                    "payloadType": "InlineBase64"
                },
                {
                    "path": "definition.pbir",
                    "payload": b64(definition_pbir),
                    "payloadType": "InlineBase64"
                }
            ]
        }
    }
  • Hello HeetParkhiya 

     

    Have you been able to run the Python script to create the payload and test it? I have provided the Python script in my earlier messages. 

     

    Here's the contents of my report.json, definition.pbir and .platform, modified slightly because I don't want to expose anything pertaining to my tenant. 

     

    report.json

    {
      "config": "{\"version\":\"5.68\",\"themeCollection\":{\"baseTheme\":{\"name\":\"CY25SU11\",\"version\":{\"visual\":\"2.4.0\",\"report\":\"3.0.0\",\"page\":\"2.3.0\"},\"type\":2}},\"activeSectionIndex\":0,\"defaultDrillFilterOtherVisuals\":true,\"settings\":{\"useNewFilterPaneExperience\":true,\"allowChangeFilterTypes\":true,\"useStylableVisualContainerHeader\":true,\"queryLimitOption\":6,\"exportDataMode\":1,\"useDefaultAggregateDisplayName\":true,\"useEnhancedTooltips\":true},\"objects\":{\"section\":[{\"properties\":{\"verticalAlignment\":{\"expr\":{\"Literal\":{\"Value\":\"'Top'\"}}}}}]}}",
      "layoutOptimization": 0,
      "resourcePackages": [
        {
          "resourcePackage": {
            "disabled": false,
            "items": [
              {
                "name": "CY25SU11",
                "path": "BaseThemes/CY25SU11.json",
                "type": 202
              }
            ],
            "name": "SharedResources",
            "type": 2
          }
        }
      ],
      "sections": [
        {
          "config": "{}",
          "displayName": "Page 1",
          "displayOption": 1,
          "filters": "[]",
          "height": 720.00,
          "name": "7a9c9127a761dab1a1bb",
          "visualContainers": [],
          "width": 1280.00
        }
      ]
    }

     

    definition.pbir

    {
      "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definitionProperties/2.0.0/schema.json",
      "version": "4.0",
      "datasetReference": {
        "byConnection": {
          "connectionString": "Data Source=\"powerbi://api.powerbi.com/v1.0/myorg/Fabric Workspace\";initial catalog=testCatalog;access mode=readonly;integrated security=ClaimsToken;semanticmodelid=838c6f17-025d-47cb-9dd5-11ce4b95db6d"
        }
      }
    }

     

    .platform

    {
      "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json",
      "metadata": {
        "type": "Report",
        "displayName": "legacy_report"
      },
      "config": {
        "version": "2.0",
        "logicalId": "8b4d6212-7372-4427-bec7-78855f7a4cab"
      }
    }

     

11 Replies

  • Hello HeetParkhiya 

     

    Don't you need a .platform in your definition in the request body? 

     

    {
            "path": ".platform",
            "payload": "ZG90UGxhdGZvcm1CYXNlNjRTdHJpbmc=",
            "payloadType": "InlineBase64"
          }

     

    Can you try using Power BI Desktop to create the report.json, definition.pbir and .platform files first before trying to upload using the REST endpoint?

      • deborshi_nag's avatar
        deborshi_nag
        Super User

        HeetParkhiya 

         

        Here's a python code you can use to generate the payload. Create a legacy format PBIR file using Power BI Desktop first! The payload will be written to the root directory. 

         

        You can use the "Try It" button and paste the payload in the below link using your Fabric/Power BI workspace GUID.

         

        Items - Create Report - REST API (Report) | Microsoft Learn 

         

        #!/usr/bin/env python3
        # PBIR-Legacy payload validator + builder (Fabric Items API - Reports)
        
        import os, sys, json, base64
        
        # --- CONFIG: Point to your PBIR-legacy project root (contains definition.pbir and report.json) ---
        PBIP_ROOT = r"C:\Legacy Report\legacy_report.Report"   # <-- UPDATE THIS to your legacy project folder
        
        INCLUDE_PLATFORM = True                     # include .platform if present
        INCLUDE_REGISTERED_RESOURCES = True         # include files under RegisteredResources/**
        INCLUDE_STATIC_RESOURCES = True             # include files under StaticResources/**
        
        # Optionally constrain resource file extensions to reduce payload bloat
        RESOURCE_EXTENSIONS = {".json", ".jpg", ".jpeg", ".png", ".gif", ".pbiviz"}
        
        def die(msg):
            print(f"ERROR: {msg}", file=sys.stderr)
            sys.exit(1)
        
        def is_file(rel):
            return os.path.isfile(os.path.join(PBIP_ROOT, rel))
        
        def must_file(rel):
            p = os.path.join(PBIP_ROOT, rel)
            if not os.path.isfile(p):
                die(f"Missing required file: {rel} at {p}")
            return rel
        
        def b64(rel):
            with open(os.path.join(PBIP_ROOT, rel), "rb") as f:
                return base64.b64encode(f.read()).decode("utf-8")
        
        def add_part(parts, rel):
            # Enforce forward slashes in 'path' for the API
            api_rel = rel.replace("\\", "/")
            parts.append({"path": api_rel, "payload": b64(rel), "payloadType": "InlineBase64"})
            print(f" + Added part: {api_rel}")
        
        def walk_resources(root_rel, parts):
            """Add resource files beneath 'root_rel' (e.g., RegisteredResources or StaticResources)."""
            root_abs = os.path.join(PBIP_ROOT, root_rel)
            if not os.path.isdir(root_abs):
                return
            for dirpath, _, filenames in os.walk(root_abs):
                for name in filenames:
                    ext = os.path.splitext(name)[1].lower()
                    if RESOURCE_EXTENSIONS and ext not in RESOURCE_EXTENSIONS:
                        continue
                    # Build relative path that mirrors the on-disk tree from PBIP_ROOT
                    rel_path = os.path.relpath(os.path.join(dirpath, name), PBIP_ROOT)
                    add_part(parts, rel_path)
        
        # --- Validate PBIR-legacy layout ---
        print(f"Using PBIP_ROOT: {PBIP_ROOT}")
        must_file("definition.pbir")
        must_file("report.json")
        
        # --- Build parts ---
        parts = []
        print("\nAdding PBIR-legacy core parts:")
        add_part(parts, "definition.pbir")
        add_part(parts, "report.json")
        
        # Optional .platform
        if INCLUDE_PLATFORM and is_file(".platform"):
            add_part(parts, ".platform")
        
        # Optional RegisteredResources/** and StaticResources/**
        # (themes, images, private custom visuals, etc.)
        if INCLUDE_REGISTERED_RESOURCES:
            print("\nScanning RegisteredResources/**")
            walk_resources("RegisteredResources", parts)
        
        if INCLUDE_STATIC_RESOURCES:
            print("\nScanning StaticResources/**")
            walk_resources("StaticResources", parts)
        
        # --- Print summary and write payload.json ---
        print("\nSummary:")
        print(f" Total parts: {len(parts)}")
        present_paths = [p["path"] for p in parts]
        print(" Paths included:")
        for p in present_paths:
            print("  -", p)
        
        # Confirm the specific required paths exist in parts
        if "definition.pbir" not in present_paths:
            die("CRITICAL: 'definition.pbir' was not included in parts[]")
        if "report.json" not in present_paths:
            die("CRITICAL: 'report.json' was not included in parts[]")
        
        payload = {"definition": {"parts": parts}}
        out_path = os.path.join(PBIP_ROOT, "payload.json")
        with open(out_path, "w", encoding="utf-8") as f:
            json.dump(payload, f, indent=2)
        print(f"\nPayload written to: {out_path}")

         

        Hope this helps - please appreciate leaving a Kudos or accepting as a Solution!  

  • Hello HeetParkhiya 

     

    I have been able to use the Fabric REST endpoint to create a sample report. I have used the modern PBIR format.  

     

    Here is the payload for the endpoint - 

     

    {
      "definition": {
        "parts": [
          {
            "path": "definition.pbir",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          },
          {
            "path": "definition/report.json",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          },
          {
            "path": "definition/version.json",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          },
          {
            "path": "definition/pages/pages.json",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          },
          {
            "path": ".platform",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          },
          {
            "path": "definition/pages/d20e46cf39e616b15188/page.json",
            "payload": "<base64>",
            "payloadType": "InlineBase64"
          }
        ]
      }
    }

     

    I have used Power BI Desktop to create the template report.json and definition.pbir files. 

     

    Hope this helps - please appreciate leaving a Kudos or accepting as a Solution

  • The error is coming from invalid file contents not how you wrapped the request. Your definition.pbir schema URL seems incomplete and must point to the full schema.json, otherwise validation fails. Your report.json is also too minimal; fabric requires at least stub properties like pages and config, not just themeCollection. Finally, the dataset reference must point to a real semantic model in the same workspace. Fix the schema URL, add the missing top-level sections to report.json, and verify the datasetID. Once those are valid UTF8 JSON strings and base64 encoded correctly, the REST create call succeeds.

     

    • HeetParkhiya's avatar
      HeetParkhiya
      Frequent Visitor

      Vinodh247 can you provide me the full schema for the definiation.pbir? because the docs provides the example of the only below provided json.

      https://learn.microsoft.com/en-us/power-bi/developer/projects/projects-report?tabs=v2%2Cdesktop#definitionpbir

      {
          "version""2.0",
          "datasetReference": {
            "byConnection": {
              "connectionString""semanticModelId=valid-guid"
            }
           }
          }
      • Vinodh247's avatar
        Vinodh247
        Super User

        There is no published full schema document listing every property for definition.pbir that you can download from microsoft; what exists is the JSON Schema endpoint URL (use VS Code for validation), and the effective expected content is extremely simple: essentially only these keys matter for REST deployment. What you need is this canonical structure (use this exact JSON with the correct schema URL and semantic model ID):

         

        {
          "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definitionProperties/2.0.0/schema.json",
          "version": "4.0",
          "datasetReference": {
            "byConnection": {
              "connectionString": "semanticmodelid=[SemanticModelId]"
            }
          }
        }

        replace [SemanticModelId] with your valid semantic model GUID

        the schema expects:

        • $schema pointing to the published schema JSON (not truncated)

        • version (4.0 is typical for reports deployed from modern PBI Desktop/Fabric)

        • datasetReference.byConnection.connectionString with semanticmodelid=GUID

        Other than those keys, the RESTAPI will reject anything extra or incomplete because it strictly validates against that schema. You cannot include additional keys outside what the schema defines for definition.pbir when creating via REST.  If you need to explore every property the schema defines, you can paste the $schema URL into a code editor with JSON Schema support to see the full fields (this is the source of truth)

        HTH!

  • v-achippa's avatar
    v-achippa
    Community Support

    Hi HeetParkhiya,

     

    Thank you for reaching out to Microsoft Fabric Community.

     

    Thank you Vinodh247 and deborshi_nag for the prompt response. 

     

    As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the user's for the issue worked? or let us know if you need any further assistance.

     

    Thanks and regards,

    Anjan Kumar Chippa

    • deborshi_nag's avatar
      deborshi_nag
      Super User

      Hello HeetParkhiya 

       

      Have you been able to run the Python script to create the payload and test it? I have provided the Python script in my earlier messages. 

       

      Here's the contents of my report.json, definition.pbir and .platform, modified slightly because I don't want to expose anything pertaining to my tenant. 

       

      report.json

      {
        "config": "{\"version\":\"5.68\",\"themeCollection\":{\"baseTheme\":{\"name\":\"CY25SU11\",\"version\":{\"visual\":\"2.4.0\",\"report\":\"3.0.0\",\"page\":\"2.3.0\"},\"type\":2}},\"activeSectionIndex\":0,\"defaultDrillFilterOtherVisuals\":true,\"settings\":{\"useNewFilterPaneExperience\":true,\"allowChangeFilterTypes\":true,\"useStylableVisualContainerHeader\":true,\"queryLimitOption\":6,\"exportDataMode\":1,\"useDefaultAggregateDisplayName\":true,\"useEnhancedTooltips\":true},\"objects\":{\"section\":[{\"properties\":{\"verticalAlignment\":{\"expr\":{\"Literal\":{\"Value\":\"'Top'\"}}}}}]}}",
        "layoutOptimization": 0,
        "resourcePackages": [
          {
            "resourcePackage": {
              "disabled": false,
              "items": [
                {
                  "name": "CY25SU11",
                  "path": "BaseThemes/CY25SU11.json",
                  "type": 202
                }
              ],
              "name": "SharedResources",
              "type": 2
            }
          }
        ],
        "sections": [
          {
            "config": "{}",
            "displayName": "Page 1",
            "displayOption": 1,
            "filters": "[]",
            "height": 720.00,
            "name": "7a9c9127a761dab1a1bb",
            "visualContainers": [],
            "width": 1280.00
          }
        ]
      }

       

      definition.pbir

      {
        "$schema": "https://developer.microsoft.com/json-schemas/fabric/item/report/definitionProperties/2.0.0/schema.json",
        "version": "4.0",
        "datasetReference": {
          "byConnection": {
            "connectionString": "Data Source=\"powerbi://api.powerbi.com/v1.0/myorg/Fabric Workspace\";initial catalog=testCatalog;access mode=readonly;integrated security=ClaimsToken;semanticmodelid=838c6f17-025d-47cb-9dd5-11ce4b95db6d"
          }
        }
      }

       

      .platform

      {
        "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json",
        "metadata": {
          "type": "Report",
          "displayName": "legacy_report"
        },
        "config": {
          "version": "2.0",
          "logicalId": "8b4d6212-7372-4427-bec7-78855f7a4cab"
        }
      }