Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Manasi25
Helper II
Helper II

Can we connect Xmatters Tool to Power BI

Hello team

I wanted to connect Xmatters which to power bi, how can i connect it.

 

I am using web connection to connect this, but it is navigating me to only HTML view.

1 ACCEPTED SOLUTION
v-sdhruv
Community Support
Community Support

Hi  @Manasi25 ,

To connect xMatters to Power BI, you’ll need to use the xMatters REST API to retrieve data in JSON format, and then load it using Power BI’s Web connector.

1.Get xMatters API CredentialsYou’ll need:

Username and password  or a Base64 encoded API token for authentication

2.Find API Endpoint You need
https://<your-company>.xmatters.com/api/xm/1/people

 
3.Get Data
Open Power BI Desktop → Get Data → Web

URL: https://<your-company>.xmatters.com/api/xm/1/people

HTTP Method: GET


Example using Power Query:

let
url = "https://<your-company>.xmatters.com/api/xm/1/people",
headers = [
#"Authorization" = "Basic xxxxxxxxxxxxx==" // Use Base64 of username:password or your token
],
response = Web.Contents(url, [Headers = headers]),
json = Json.Document(response),
results = json[people] // Adjust based on actual structure
in
results

you can find a similar question posted which might help:

https://support.xmatters.com/hc/en-us/community/posts/14519282147867-Use-WebAPI-JSON-for-Power-BI-Da...

If the response has addressed your query, please Accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank You!

View solution in original post

8 REPLIES 8
v-sdhruv
Community Support
Community Support

Hi @Manasi25 ,

Just wanted to check if you had the opportunity to review the suggestions provided?
If the response has addressed your query, please Accept it as a solution  so other members can easily find it.
Thank You

v-sdhruv
Community Support
Community Support

Hi @Manasi25 ,

Just wanted to check if you had the opportunity to review the suggestions provided?
If the response has addressed your query, please Accept it as a solution  so other members can easily find it.
Thank You

v-sdhruv
Community Support
Community Support

Hi @Manasi25 ,

Just wanted to check if you had the opportunity to review the suggestions provided?
If the response has addressed your query, please Accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank You

v-sdhruv
Community Support
Community Support

Hi  @Manasi25 ,

To connect xMatters to Power BI, you’ll need to use the xMatters REST API to retrieve data in JSON format, and then load it using Power BI’s Web connector.

1.Get xMatters API CredentialsYou’ll need:

Username and password  or a Base64 encoded API token for authentication

2.Find API Endpoint You need
https://<your-company>.xmatters.com/api/xm/1/people

 
3.Get Data
Open Power BI Desktop → Get Data → Web

URL: https://<your-company>.xmatters.com/api/xm/1/people

HTTP Method: GET


Example using Power Query:

let
url = "https://<your-company>.xmatters.com/api/xm/1/people",
headers = [
#"Authorization" = "Basic xxxxxxxxxxxxx==" // Use Base64 of username:password or your token
],
response = Web.Contents(url, [Headers = headers]),
json = Json.Document(response),
results = json[people] // Adjust based on actual structure
in
results

you can find a similar question posted which might help:

https://support.xmatters.com/hc/en-us/community/posts/14519282147867-Use-WebAPI-JSON-for-Power-BI-Da...

If the response has addressed your query, please Accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank You!

v-sdhruv
Community Support
Community Support

Hi @Manasi25 ,
Just wanted to check if you were able to resolve the issue?
If the response has addressed your query, please Accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank You!

I wanted an example of how to connect REST API jason 

pankajnamekar25
Super User
Super User

Hello @Manasi25 

 

Yes, 

USE REST API which provides data in JSON

 

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

can you show me example?

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.