Skip to content

Reports

create_report(workspace, display_name, item_definition, *, description=None, folder=None, df=True)

Creates a new report in the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
display_name str

The display name of the report.

required
item_definition Dict[str, Any]

The definition of the report.

required
description Optional[str]

A description for the report.

None
folder Optional[str]

The ID of the folder to create the report in.

None
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The created report details.

Examples:

create_report(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    display_name='SalesDataModel',
    item_definition= {}, # Definition dict of the report
    description='A report for sales data',
    folder_id='456e7890-e12b-34d5-a678-9012345678901',
)
Source code in src/pyfabricops/items/reports.py
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@df
def create_report(
    workspace: str,
    display_name: str,
    item_definition: Dict[str, Any],
    *,
    description: Optional[str] = None,
    folder: Optional[str] = None,
    df: Optional[bool] = True,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Creates a new report in the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        display_name (str): The display name of the report.
        item_definition (Dict[str, Any]): The definition of the report.
        description (Optional[str]): A description for the report.
        folder (Optional[str]): The ID of the folder to create the report in.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The created report details.

    Examples:
        ```python
        create_report(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            display_name='SalesDataModel',
            item_definition= {}, # Definition dict of the report
            description='A report for sales data',
            folder_id='456e7890-e12b-34d5-a678-9012345678901',
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)

    payload = {'displayName': display_name, 'definition': item_definition}

    if description:
        payload['description'] = description

    if folder:
        folder_id = resolve_folder(folder, workspace_id=workspace_id)
        if folder_id:
            payload['folderId'] = folder_id

    return api_request(
        endpoint='/workspaces/' + workspace_id + '/reports',
        method='post',
        payload=payload,
        support_lro=True,
    )

delete_report(workspace, report)

Delete a report from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report str

The name or ID of the report to delete.

required

Returns:

Type Description
None

None

Examples:

delete_report('123e4567-e89b-12d3-a456-426614174000', '456e7890-e12b-34d5-a678-9012345678901')
Source code in src/pyfabricops/items/reports.py
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
def delete_report(workspace: str, report: str) -> None:
    """
    Delete a report from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        report (str): The name or ID of the report to delete.

    Returns:
        None

    Examples:
        ```python
        delete_report('123e4567-e89b-12d3-a456-426614174000', '456e7890-e12b-34d5-a678-9012345678901')
        ```
    """
    workspace_id = resolve_workspace(workspace)
    report_id = resolve_report(workspace, report)

    return api_request(
        endpoint='/workspaces/' + workspace_id + '/reports/' + report_id,
        method='delete',
    )

get_report(workspace, report, *, df=True)

Retrieves a report by its name or ID from the specified workspace.

Parameters:

Name Type Description Default
workspace_id str

The workspace ID.

required
report_id str

The ID of the report.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The report details if found. If df=True, returns a DataFrame with flattened keys.

Examples:

get_report('123e4567-e89b-12d3-a456-426614174000', '123e4567-e89b-12d3-a456-426614174000')
Source code in src/pyfabricops/items/reports.py
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@df
def get_report(
    workspace: str, report: str, *, df: Optional[bool] = True
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Retrieves a report by its name or ID from the specified workspace.

    Args:
        workspace_id (str): The workspace ID.
        report_id (str): The ID of the report.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The report details if found. If `df=True`, returns a DataFrame with flattened keys.

    Examples:
        ```python
        get_report('123e4567-e89b-12d3-a456-426614174000', '123e4567-e89b-12d3-a456-426614174000')
        ```
    """
    workspace_id = resolve_workspace(workspace)
    report_id = resolve_report(workspace, report)
    return api_request(
        endpoint='/workspaces/' + workspace_id + '/reports/' + report_id,
    )

get_report_definition(workspace, report)

Retrieves the definition of a report by its name or ID from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report str

The name or ID of the report.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The report definition if found, otherwise None.

Examples:

get_report_definition(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    report_id='456e7890-e12b-34d5-a678-9012345678901',
)
Source code in src/pyfabricops/items/reports.py
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
def get_report_definition(
    workspace: str, report: str
) -> Union[Dict[str, Any], None]:
    """
    Retrieves the definition of a report by its name or ID from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        report (str): The name or ID of the report.

    Returns:
        ( Union[Dict[str, Any], None]): The report definition if found, otherwise None.

    Examples:
        ```python
        get_report_definition(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            report_id='456e7890-e12b-34d5-a678-9012345678901',
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)

    report_id = resolve_report(workspace, report)

    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/reports/'
        + report_id
        + '/getDefinition',
        method='post',
        support_lro=True,
    )

get_report_id(workspace, report_name)

Retrieves the ID of a report by its name from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report_name str

The name of the report.

required

Returns:

Type Description
Optional[str]

The ID of the report if found, otherwise None.

Examples:

get_report_id('123e4567-e89b-12d3-a456-426614174000', 'SalesDataModel')
Source code in src/pyfabricops/items/reports.py
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
def get_report_id(workspace: str, report_name: str) -> Union[str, None]:
    """
    Retrieves the ID of a report by its name from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        report_name (str): The name of the report.

    Returns:
        (Optional[str]): The ID of the report if found, otherwise None.

    Examples:
        ```python
        get_report_id('123e4567-e89b-12d3-a456-426614174000', 'SalesDataModel')
        ```
    """
    reports = list_reports(workspace=resolve_workspace(workspace), df=False)
    for report in reports:
        if report.get('displayName') == report_name:
            return report.get('id')
    return None

list_reports(workspace, df=True)

Returns a list of reports in a specified workspace.

Parameters:

Name Type Description Default
workspace_id str

The ID of the workspace.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, List[Dict[str, Any]], None]

A list of reports or a DataFrame if df is True.

Source code in src/pyfabricops/items/reports.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@df
def list_reports(
    workspace: str,
    df: Optional[bool] = True,
) -> Union[DataFrame, List[Dict[str, Any]], None]:
    """
    Returns a list of reports in a specified workspace.

    Args:
        workspace_id (str): The ID of the workspace.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, List[Dict[str, Any]], None]): A list of reports or a DataFrame if df is True.
    """
    return api_request(
        endpoint='/workspaces/' + resolve_workspace(workspace) + '/reports',
        support_pagination=True,
    )

update_report(workspace, report, *, display_name=None, description=None, df=False)

Updates the properties of the specified report.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report str

The ID of the report to update.

required
display_name str

The new display name for the report.

None
description str

The new description for the report.

None
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

False

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The updated report details if successful, otherwise None.

Examples:

update_report(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    report_id='456e7890-e12b-34d5-a678-9012345678901',
    display_name='UpdatedDisplayName',
    description='Updated description'
)
Source code in src/pyfabricops/items/reports.py
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
@df
def update_report(
    workspace: str,
    report: str,
    *,
    display_name: Optional[str] = None,
    description: Optional[str] = None,
    df: Optional[bool] = False,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Updates the properties of the specified report.

    Args:
        workspace (str): The workspace name or ID.
        report (str): The ID of the report to update.
        display_name (str, optional): The new display name for the report.
        description (str, optional): The new description for the report.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The updated report details if successful, otherwise None.

    Examples:
        ```python
        update_report(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            report_id='456e7890-e12b-34d5-a678-9012345678901',
            display_name='UpdatedDisplayName',
            description='Updated description'
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)
    report_id = resolve_report(workspace, report)

    payload = {}

    if display_name:
        payload['displayName'] = display_name

    if description:
        payload['description'] = description

    return api_request(
        endpoint='/workspaces/' + workspace_id + '/reports/' + report_id,
        method='patch',
        payload=payload,
    )

update_report_definition(workspace, report, item_definition, *, df=True)

Updates the definition of an existing report in the specified workspace. If the report does not exist, it returns None.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report str

The name or ID of the report to update.

required
item_definition Dict[str, Any]

The new definition for the report.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[Dict[str, Any], None]

The updated report details if successful, otherwise None.

Examples:

update_report(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    report_id='456e7890-e12b-34d5-a678-9012345678901',
    item_definition={...} # New definition dict of the report
)
Source code in src/pyfabricops/items/reports.py
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
@df
def update_report_definition(
    workspace: str,
    report: str,
    item_definition: Dict[str, Any],
    *,
    df: Optional[bool] = True,
) -> Union[Dict[str, Any], None]:
    """
    Updates the definition of an existing report in the specified workspace.
    If the report does not exist, it returns None.

    Args:
        workspace (str): The workspace name or ID.
        report (str): The name or ID of the report to update.
        item_definition (Dict[str, Any]): The new definition for the report.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[Dict[str, Any], None]): The updated report details if successful, otherwise None.

    Examples:
        ```python
        update_report(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            report_id='456e7890-e12b-34d5-a678-9012345678901',
            item_definition={...} # New definition dict of the report
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)
    report_id = resolve_report(workspace, report)
    params = {'updateMetadata': True}
    payload = {'definition': item_definition}
    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/reports/'
        + report_id
        + '/updateDefinition',
        method='post',
        payload=payload,
        params=params,
        support_lro=True,
    )