Power BI · Example Payload

Power Bi Getgroups Example

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Power Bi Getgroups 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": "getGroups",
  "method": "GET",
  "path": "/groups",
  "summary": "Power Bi List Workspaces",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getgroups200Example",
      "example": {
        "value": [
          {
            "id": "abc123",
            "name": "Example Title",
            "isReadOnly": true,
            "isOnDedicatedCapacity": true,
            "capacityId": "500123",
            "type": "Workspace",
            "state": "Active"
          }
        ],
        "@odata.context": "example_value"
      }
    },
    {
      "status": "401",
      "contentType": "application/json",
      "name": "Getgroups401Example",
      "example": {
        "error": {
          "code": "example_value",
          "message": "example_value",
          "details": [
            {
              "message": "example_value",
              "target": "example_value"
            }
          ]
        }
      }
    }
  ]
}