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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
FVal
Helper I
Helper I

Power BI integration via web API to Fresh Service

Hi,

 

We use Power BI to run reports from a ServiceDesk tool, Fresh Service. The integration is done via a web API link.

 

Recently, the Fresh Service development team updated something and broke the connection, due to an error related to the field "ID" that got an extra space in front of the name, becoming " ID".

 

FVal_0-1599027040481.png

 

 

This issue was resolved at this moment, but all our existing reports are still seing it with the wrong value. If we manually edit a report, the reports still does not work.

 

FVal_1-1599027108334.png

 

FVal_2-1599027209570.png

If I press the "Fix this" button, the report vanishes completly.

FVal_3-1599027260027.png

 

We tried clearing the permission, changing the source but still the same issue and it continues to show the old wrong " ID" instead of the corrected "ID" as the source have it now fixed.

 

Is there a way in Power BI to clear the cache or something similar?

 

Thank you,

V.

3 REPLIES 3
amitchandak
Super User
Super User

@FVal , In data transformation mode. Right click on the table and open advance editor and correct the name coming from the source.

Save that and rename the column in power query or in Data view to be the same as the old one. All visuals will work

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi,

 

Still getting the error, below is the exact message:

 

There was an error when processing the data in the dataset.

Please try again later or contact support. If you contact support, please provide these details.

  • Data source error{"error":{"code":"ModelRefresh_ShortMessage_ProcessingError","pbi.error":{"code":"ModelRefresh_ShortMessage_ProcessingError","parameters":{},"details":[{"code":"Message","detail":{"type":1,"value":"The column 'ID' of the table wasn't found."}}],"exceptionCulprit":1}}} Table: All_tickets_from_Fresh_API_Analytics.
  • Cluster URIWABI-WEST-EUROPE-redirect.analysis.windows.net
  • Activity ID47180205-8938-4322-8521-1cac42d27209
  • Request ID151cff66-e753-70c1-e4c4-043170ea636e
  • Time2020-09-10 13:27:15Z
Anonymous
Not applicable

Hi @FVal 

On power query editor add a step at the end and rename this column from " ID"   to "ID".

Easiest way is to double click on the " ID" column name in editor window and remove space 

or add the below code in  your advance editor. Basicaly #"Renamed Columns" step is waht you need from below M query.

let
    Source = <Something... Something..>,
    #"Changed Type" = Table.TransformColumnTypes(Source,{{" ID", Type text}}),
    #"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{" ID", "ID"}})
in
    #"Renamed Columns"

  

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors