Power BI · Example Payload

Power Bi Updateparameters Example

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Power Bi Updateparameters 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": "updateParameters",
  "method": "POST",
  "path": "/datasets/{datasetId}/parameters",
  "summary": "Power Bi Update Dataset Parameters",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "UpdateparametersRequestExample",
      "example": {
        "updateDetails": [
          {
            "name": "Example Title",
            "newValue": "example_value"
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "400",
      "contentType": "application/json",
      "name": "Updateparameters400Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    },
    {
      "status": "401",
      "contentType": "application/json",
      "name": "Updateparameters401Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    }
  ]
}