Power BI · Example Payload

Power Bi Createdashboard Example

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Power Bi Createdashboard 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": "createDashboard",
  "method": "POST",
  "path": "/dashboards",
  "summary": "Power Bi Create a Dashboard",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatedashboardRequestExample",
      "example": {
        "name": "Example Title"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createdashboard201Example",
      "example": {
        "id": "abc123",
        "displayName": "example_value",
        "isReadOnly": true,
        "webUrl": "https://www.example.com",
        "embedUrl": "https://www.example.com",
        "dataClassification": "example_value"
      }
    },
    {
      "status": "401",
      "contentType": "application/json",
      "name": "Createdashboard401Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    }
  ]
}