Add dashboard

 

Updated: September 13, 2017



Request | Response

The Add dashboard operation adds a new blank dashboard.

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

Groups

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. To learn how to create a group, see Create an app workspace.

POST https://api.powerbi.com/v1.0/myorg/groups/{group_id}/dashboards

Uri parameter

NameDescriptionData Type
group_idGuid of the Group to use. You can get the group id from the Get Groups operation. Groups are referred to as app workspaces within the Power BI service.String

Header

Authorization: Bearer eyJ0eX ... FWSXfwtQ

Body Schema

{
  "name": "string"
}

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

Status code

CodeDescription
200Ok. Success.
400Bad request
403Unauthorized
404Not found
500Internal service error

Content-Type

application/json

Body schema

{
  "id": "{dashboard_id}"
}

Show: