---
title: "Power BI Extract"
slug: "power-bi-extract"
description: "SysAid’s Power BI Extract integration allows you to regularly export your SysAid SR data to OneDrive where you can display it in MS PowerBI."
updated: 2026-01-07T09:21:16Z
published: 2026-01-07T09:21:16Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.sysaid.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Power BI Extract

SysAid’s Power BI Extract integration allows you to regularly export your SysAid SR data to your storage method of choice.

**Method 1**: Display your SR data as a JSON file and store it in your OneDrive, where Microsoft Power BI will read it and build the reports

**Method 2**: Use our SysAid Storage API, which allows you to securely access the URL with your saved JSON file

**Power BI Extract video**

## [Embedded content](https://player.vimeo.com/video/800816377) Licensing

You can contact your account manager to purchase a license or a 30-day trial license for this Add-on.

## Set up the Power BI Extract Add-on

### Steps

1. In SysAid, go to **Connect**>**My add-ons.**
2. Search for **Power BI Extract**and click the **gear icon**.
3. Register the application in Azure
  1. In the [Azure dashboard](https://portal.azure.com/), click **App Registrations**.
  2. Click **View All Applications**.
  3. Click **New Registration**. ![IntegrationOffice365NewRegistrationNewRegistration3.jpg](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/IntegrationOffice365NewRegistrationNewRegistration.jpg)
  4. In the **Name** field, enter a name for the application (for example, "SysAid BI").
  5. Click **Register**. ![IntegrationOffice365RegisterApplication2.jpg](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/IntegrationOffice365RegisterApplication.jpg)
4. Get the Tenant ID
  1. Hover over the Directory (tenant) ID field and click ![biExtractSettingsfilesCopyButton3.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/biExtractSettingsfilesCopyButton.png).
  2. Back in SysAid, paste the copied text into the **Tenant Name** field.
5. Get the Client ID
  1. Hover over the Application (Client) ID field and click ![biExtractSettingsfilesCopyButton4.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/biExtractSettingsfilesCopyButton.png).
  2. Back in SysAid, paste the copied text into the **Client ID** field.
6. Get the Secret Key
  1. From the Left-menu, click **Certificates & Secrets**.
  2. Click **New client secret**.
  3. Add a description (e.g. "SysAid Power BI Extract").
  4. In the **Expires** area, select **Never**.
  5. Click **Add**.
  6. In the entry you just created, click ![biExtractSettingsfilesCopyButton5.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/biExtractSettingsfilesCopyButton.png).
  7. Back in SysAid, paste the copied text into the Secret Key field.
7. In the Email address field, enter the email address for the administrator's MS OneDrive account.
8. Enter the name you want for the JSON file that will be created with the BI data from SysAid. Make sure the file name includes the extension .json (for example, "SysAidData.json").
9. Configure **API Permissions**
  1. In Azure, navigate to select **API Permissions**.
  2. Click **Add a permission**.
  3. Click **Select an API** > **Microsoft Graph**.
  4. Click **Application**.
  5. Select the following permissions:
    - Application.ReadWrite.All
    - Files.ReadWrite.All
  6. Select the respective type for each permission.
  7. Enable the following permissions: ![biExtractSettingsfilesNewPermissions.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/biExtractSettingsfilesNewPermissions.png)
10. Click **Save Changes**.
11. Click the slider to activate the Add-on.
12. Click **Test Connection** to ensure that everything has been configured correctly. The results appear at the top of the screen.
13. (Optional) You can click ![azureSettingsfilesManual.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/azureSettingsfilesManual.png) to manually import BI Data to the JSON file. * The **Last Updated** field indicates when the file was last updated. ![biExtractSettingsfilesBIExtractSetup.jpg](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/biExtractSettingsfilesBIExtractSetup.jpg)

## Import SysAid Storage data to Power BI

### Steps

1. Create a Blank query in Power BI

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/POWERBI1.png)

2. Open the Query's Advanced Editor

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/POWERBI2(1).png)

3. Paste the Query script inside the Editor

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/POWERBI3(1).png)

You can copy and paste the following script (using the URL and Header you received from the Power BI Add-on):

```plaintext
let

Source = Table.FromColumns({Lines.FromBinary(Web.Contents("Paste the URL from POWER BI Extract addon", [Headers=[clientid="Clientid from POWER BI Extract addon", accountid="Your SysAid account id", authorization="The Token from Power BI Extract addon"]]))}),

#"Parsed JSON" = Table.TransformColumns(Source,{},Json.Document),

#"JSON to List" = #"Parsed JSON"{0}[Column1],

#"List To SysAid Table List" = Table.FromRecords({#"JSON to List"}),

#"Expanded SysAid" = Table.ExpandListColumn(#"List To SysAid Table List", "SysAid"),

#"Extract Headers" = Record.FieldNames(#"Expanded SysAid"[SysAid]{0}),

#"Merge Data To Table" = Table.ExpandRecordColumn(#"Expanded SysAid", "SysAid", #"Extract Headers")

in

#"Merge Data To Table"You can copy and paste the following script (using the URL and Header you received from Power BI Add-on)
```

4. Select all cells and click on **Detect Data Type**.

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/POWERBI4.png)

5. Close the Editor and apply your changes.

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/POWERBI5.png)

> [!NOTE]
> Please note:
> 
> The template is integrated with the field structure for SysAid tickets. It's important that you modify the data source to match the file location where you store this file. You can search for the file in OneDrive and use it to display the data in Power BI or other BI tools that you connect to OneDrive.

**Click**[**here**](https://cdn3.sysaid.com/SysAidTemplateForPowerBIFromJSON.pbit) to download a ready-to-go Power BI Template file that you can use to generate dashboards with your SysAid data.

If you encounter any issues with loading this template, ensure that "Application language" in your Power BI Regional Settings is set to **English (United States)**. For any other issues importing your data into Power BI, we recommend referring to the [Power BI community](https://community.powerbi.com).

## Map SysAid Fields to Power BI

The BI Analytics Settings section allows you to map Fields to be included in your Power BI data extract.

When you map a field to one of the Target BI Fields, that field can be accessed by Power BI Extract.

Changes made here take effect on new data collected by Power BI Extract from the time you make the changes and onward.

### **Steps**

1. Select or expand the checkbox of the relevant Table lists
2. Select one or more fields from the lists (there is no selection limit)
3. Click **Save Changes**. ![biExtractSettingsfilesBIAS.png](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/rn%2023410.png)

> [!NOTE]
> Please note:
> 
> Any Fields you selected for JSON export using the Power BI Integration prior to 23.4.10 must be re-selected once you start using the upgraded version
> 
> - You can search for your desired Field in the search bar above the Table and Field selection list
> - You can multi select multiple Fields by pressing CTRL while selecting the Fields or Tables

## Export data to SysAid Cloud

The SysAid Storage functionality allows you to export your data to SysAid Cloud and obtain secure access to it.

This is done by adding three headers to the URL, one of which is a token that is valid for three months.

### Import data from a webpage

You can choose the option in Power BI to import data from a webpage, using the parameters highlighted below;

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/image%20(3).png)

> [!NOTE]
> Please note:
> 
> You can define a reminder notification about updating the token.
> 
> These can be edited or added in **Settings**>**Monitoring**>**Notifications**.

## Enable Power BI Add-on with SysAid Storage

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/Frame%207.png)

**Step 1:** Click "Select where to save BI data" and choose "SysAid Storage"

**Step 2:** Click "Save Changes"

**Step 3:** Enable the "Activate integration" Slider

**Step 4:** Click "Generate new token"

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/Frame%208.png)

**Step 5:**Take note of the Token field's value (it becomes hashed after you exit the form)

**Step 6:** Replace the following values in the script via copy & paste:

- URL from POWER BI Extract addon

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/image%20(4).png)

- Clientid from POWER BI Extract addon

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/image%20(5).png)

- accountid
- The Token from Power BI Extract addon

![](https://cdn.document360.io/52d3cb6c-cc81-43c2-b6f7-cbabcb449271/Images/Documentation/image%20(6).png)

```plaintext
let

Source = Table.FromColumns({Lines.FromBinary(Web.Contents("Paste the URL from POWER BI Extract addon", [Headers=[clientid="Clientid from POWER BI Extract addon", accountid="Your SysAid account id", authorization="The Token from Power BI Extract addon"]]))}),

#"Parsed JSON" = Table.TransformColumns(Source,{},Json.Document),

#"JSON to List" = #"Parsed JSON"{0}[Column1],

#"List To SysAid Table List" = Table.FromRecords({#"JSON to List"}),

#"Expanded SysAid" = Table.ExpandListColumn(#"List To SysAid Table List", "SysAid"),

#"Extract Headers" = Record.FieldNames(#"Expanded SysAid"[SysAid]{0}),

#"Merge Data To Table" = Table.ExpandRecordColumn(#"Expanded SysAid", "SysAid", #"Extract Headers")

in

#"Merge Data To Table"
```
