Reference

Endpoint Refresh a Dataflow


Name

refresh_dataflow

Description

Refresh Dataflow in default or specified Workspace. If WorkspaceId parameter is not supplied, default Workspace will be used. [API reference]

Parameters

Parameter Required Options
Name: Id

Label: Id

YES
Name: WorkspaceId

Label: WorkspaceId

Name: WaitForCompletion

Label: Wait for completion

Option Value
True True
False False

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Id DT_STR varchar(200) 200
RequestId DT_STR varchar(100) 100
RefreshType DT_WSTR nvarchar(50) 50
StartTime DT_DBTIMESTAMP datetime
EndTime DT_DBTIMESTAMP datetime
Status DT_WSTR nvarchar(50) 50
HttpStatusCode DT_I4 int
If the column you are looking for is missing, consider customizing Power BI Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Power BI Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Power BI
Connect to your Power BI account and retrieve data, refresh datasets, etc.
Power BI
Refresh a Dataflow
Required Parameters
Id Fill-in the parameter...
Optional Parameters
WorkspaceId
Wait for completion True
Initial wait (ms) 3000
Status check wait interval (s) 5
Maximum wait time (s) 7200
ContineOnErrorForMessage True
ErrorSubstringToMatch is currently in progress
EnableRawOutputModeSingleRow True
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Power BI
Connect to your Power BI account and retrieve data, refresh datasets, etc.
Power BI
Refresh a Dataflow
Required Parameters
Id Fill-in the parameter...
Optional Parameters
WorkspaceId
Wait for completion True
Initial wait (ms) 3000
Status check wait interval (s) 5
Maximum wait time (s) 7200
ContineOnErrorForMessage True
ErrorSubstringToMatch is currently in progress
EnableRawOutputModeSingleRow True
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Dataflows - Refresh a Dataflow

SELECT * 
FROM refresh_dataflow
WHERE Id = 'aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee'

Dataflows - Refresh a Dataflow (wait for completion)

SELECT *
FROM refresh_dataflow
WHERE Id = 'aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee'
WITH (WaitForCompletion='True')
 
-- More info on refreshing a Dataflow:
-- https://learn.microsoft.com/en-us/rest/api/power-bi/dataflows/refresh-dataflow

Dataflows - Refresh a Dataflow (without waiting to complete)

SELECT *
FROM refresh_dataflow
WHERE Id = 'aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee'
WITH (WaitForCompletion='False')
 
-- More info on refreshing a Dataflow:
-- https://learn.microsoft.com/en-us/rest/api/power-bi/dataflows/refresh-dataflow

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Dataflows - Refresh a Dataflow

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * 
FROM refresh_dataflow
WHERE Id = ''aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee''';

EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];

Dataflows - Refresh a Dataflow (wait for completion)

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM refresh_dataflow
WHERE Id = ''aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee''
WITH (WaitForCompletion=''True'')
 
-- More info on refreshing a Dataflow:
-- https://learn.microsoft.com/en-us/rest/api/power-bi/dataflows/refresh-dataflow';

EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];

Dataflows - Refresh a Dataflow (without waiting to complete)

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM refresh_dataflow
WHERE Id = ''aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee''
WITH (WaitForCompletion=''False'')
 
-- More info on refreshing a Dataflow:
-- https://learn.microsoft.com/en-us/rest/api/power-bi/dataflows/refresh-dataflow';

EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];