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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
DavidGM
Helper I
Helper I

Getting Error An error occurred while communicating with another service, please try again later.

An error occurred while communicating with another service, please try again later. If this problem recurs, please contact support with this message. (Request ID: 3743d58b-032f-4f02-bbb1-ad7e04efc4e2)

 

In powerBI I am using 

  JiraIDPerPage = 50,
But due to latest Atlassian changes in jira API I am gettign above error. Has anyone experience that error and what should be the fix. Thanks
1 ACCEPTED SOLUTION
anilgavhane
Super User
Super User

Here’s what’s happening and how you can fix it:

 

What’s Causing the Error

  • Atlassian recently updated their Jira REST API v3, which has broken some existing Power BI connections.
  • The error message “An error occurred while communicating with another service…” often appears when:
  • The endpoint URL is incorrect or deprecated.
  • The authentication method (API token or headers) is misconfigured.
  • The query format (e.g., JQL syntax) is invalid or blocked by permissions.

 

 Suggested Fixes

1. Update Your API Endpoint

Make sure your URL is correctly formatted:

 

BaseUrl = "https://cagbrands.atlassian.net/rest/api/3/search?jql=project=XYZ"

 

 

Avoid using /jql at the end—it should be part of the query string, not the path.

2. Use Correct Headers

Ensure you’re passing the correct authentication headers:

 

Headers = [ #"Authorization" = "Basic " & Binary.ToText(Text.ToBinary("email:api_token"), BinaryEncoding.Base64), #"Content-Type" = "application/json" ]

 

 

3. Check Pagination Parameters

Use maxResults and startAt in your query:

 

Web.Contents(BaseUrl, [ Query = [ maxResults = Text.From(JiraIDPerPage), startAt = "0" ], Headers = Headers ])

 

4. Verify Permissions

Make sure your API token has access to the Jira project and issue data. If permissions are restricted, the API may return a generic error.

View solution in original post

3 REPLIES 3
v-saisrao-msft
Community Support
Community Support

Hi @DavidGM,

Checking in to see if your issue has been resolved. let us know if you still need any assistance.

 

Thank you.

v-saisrao-msft
Community Support
Community Support

Hi @DavidGM,

Have you had a chance to review the solution we shared by @anilgavhane? If the issue persists, feel free to reply so we can help further.

 

Thank you.

anilgavhane
Super User
Super User

Here’s what’s happening and how you can fix it:

 

What’s Causing the Error

  • Atlassian recently updated their Jira REST API v3, which has broken some existing Power BI connections.
  • The error message “An error occurred while communicating with another service…” often appears when:
  • The endpoint URL is incorrect or deprecated.
  • The authentication method (API token or headers) is misconfigured.
  • The query format (e.g., JQL syntax) is invalid or blocked by permissions.

 

 Suggested Fixes

1. Update Your API Endpoint

Make sure your URL is correctly formatted:

 

BaseUrl = "https://cagbrands.atlassian.net/rest/api/3/search?jql=project=XYZ"

 

 

Avoid using /jql at the end—it should be part of the query string, not the path.

2. Use Correct Headers

Ensure you’re passing the correct authentication headers:

 

Headers = [ #"Authorization" = "Basic " & Binary.ToText(Text.ToBinary("email:api_token"), BinaryEncoding.Base64), #"Content-Type" = "application/json" ]

 

 

3. Check Pagination Parameters

Use maxResults and startAt in your query:

 

Web.Contents(BaseUrl, [ Query = [ maxResults = Text.From(JiraIDPerPage), startAt = "0" ], Headers = Headers ])

 

4. Verify Permissions

Make sure your API token has access to the Jira project and issue data. If permissions are restricted, the API may return a generic error.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Kudoed Authors