Add group

 

Updated: July 21, 2017



Request | Response

The Add group operation adds a group. Groups are a collection of unified Azure Active Directory groups that the user is a member of and is available in the Power BI service. These are referred to as app workspaces within the Power BI service.

POST https://api.powerbi.com/v1.0/myorg/groups

Header

Authorization: Bearer eyJ0eX ... FWSXfwtQ

Body Schema

{
  "name": "string"
}

Response returns the ID of the newly created group (app workspace).

Status code

CodeDescription
201Returns ID of created group
403Unauthorized
404Not found
500Internal service error

Content-Type

application/json

Body schema

{
  "id": "string",
  "name": "string",
  "isReadOnly": true
}

Show: