Power BI · Example Payload

Power Bi Getgatewaydatasources Example

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Power Bi Getgatewaydatasources 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": "getGatewayDatasources",
  "method": "GET",
  "path": "/gateways/{gatewayId}/datasources",
  "summary": "Power Bi List Gateway Data Sources",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getgatewaydatasources200Example",
      "example": {
        "value": [
          {
            "id": "abc123",
            "gatewayId": "500123",
            "datasourceType": "example_value",
            "connectionDetails": "example_value",
            "credentialType": "Basic",
            "datasourceName": "example_value"
          }
        ],
        "@odata.context": "example_value"
      }
    },
    {
      "status": "401",
      "contentType": "application/json",
      "name": "Getgatewaydatasources401Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    }
  ]
}