Power BI · Example Payload

Power Bi Clonereport Example

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Power Bi Clonereport Example is an example object payload from Power BI, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "cloneReport",
  "method": "POST",
  "path": "/reports/{reportId}/Clone",
  "summary": "Power Bi Clone a Report",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "ClonereportRequestExample",
      "example": {
        "name": "Example Title",
        "targetModelId": "500123",
        "targetWorkspaceId": "500123"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Clonereport200Example",
      "example": {
        "id": "abc123",
        "name": "Example Title",
        "datasetId": "500123",
        "webUrl": "https://www.example.com",
        "embedUrl": "https://www.example.com",
        "reportType": "PowerBIReport",
        "description": "A sample description.",
        "createdDateTime": "2026-01-15T10:30:00Z",
        "modifiedDateTime": "2026-01-15T10:30:00Z",
        "modifiedBy": "example_value"
      }
    },
    {
      "status": "400",
      "contentType": "application/json",
      "name": "Clonereport400Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    },
    {
      "status": "401",
      "contentType": "application/json",
      "name": "Clonereport401Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    }
  ]
}