Admin - Dataflows GetUpstreamDataflowsInGroupAsAdmin
Returns a list of upstream dataflows for the specified dataflow.
Permissions
- The user must be a Fabric administrator or authenticate using a service principal.
- Delegated permissions are supported.
When running under service prinicipal authentication, an app must not have any admin-consent required premissions for Power BI set on it in the Azure portal.
Required Scope
Tenant.Read.All or Tenant.ReadWrite.All
Relevant only when authenticating via a standard delegated admin access token. Must not be present when authentication via a service principal is used.
Limitations
Maximum 200 requests per hour.
GET https://api.powerbi.com/v1.0/myorg/admin/groups/{groupId}/dataflows/{dataflowId}/upstreamDataflows
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
dataflow
|
path | True |
string uuid |
The dataflow ID |
group
|
path | True |
string uuid |
The workspace ID |
Responses
Name | Type | Description |
---|---|---|
200 OK |
OK |
Examples
Example
Sample request
GET https://api.powerbi.com/v1.0/myorg/admin/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/dataflows/cfafbeb1-8037-4d0c-896e-a46fb27ff229/upstreamDataflows
Sample response
{
"value": [
{
"targetDataflowId": "cfafbeb1-8037-4d0c-896e-a46fb27ff229",
"groupId": "f089354e-8366-4e18-aea3-4cb4a3a50b48"
},
{
"targetDataflowId": "67a4529b-0cdd-4584-9867-5c0e77d57a2f",
"groupId": "f089354e-8366-4e18-aea3-4cb4a3a50b48"
}
]
}
Definitions
Name | Description |
---|---|
Dependent |
A Power BI dependent dataflow |
Dependent |
The OData response wrapper for a list of Power BI dependent dataflows |
DependentDataflow
A Power BI dependent dataflow
Name | Type | Description |
---|---|---|
groupId |
string |
The target group ID |
targetDataflowId |
string |
The target dataflow ID |
DependentDataflows
The OData response wrapper for a list of Power BI dependent dataflows
Name | Type | Description |
---|---|---|
odata.context |
string |
|
value |
The dependent dataflows |