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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
mr1605
New Member

Connecting TalentLMS API to PowerBI

Hello,

I've been trying to connect the TalentLMS API to PowerBI but I'm getting a few errors when authenticating. I don't have any experience with APIs as it is my first time trying to connect to one.

This is what I have so far (companyname is the subdomain and the token is an alphanumeric value):

 

 

let
    rooturl = "https://companyname.talentlms.com/api",
    token = "xxxxxxxxxxxxxxxxxxx",
    relativeURL = "/v1/users",
    Result =
        Web.Contents(
            rooturl,
            [
                Headers = [
                    #"Content-Type" = "application/json",
                    Authorization = "setApiKey()" & token,
                    RelativePath = "/v1/users"
                ],
                RelativePath = relativeURL
            ]
        )
in
    Result

 

 

 Then I get prompted to add my credentials, which should be anonymous since I'm connecting with a token, but when trying to connect anonimously I get the message "It was not possible to connect with the informed credentials"

I have tried a few different codes and I've tried connecting as a Web source but nothing worked.

If it helps, here's the link to the website's API documentation: https://www.talentlms.com/pages/docs/TalentLMS-API-Documentation.pdf

2 REPLIES 2
boyceonmission
New Member

Did you ever resolve this @mr1605 ? Also, what was you planning on doing once connected? I'm hoping to display our course catalogue on our training departments sharepoint site

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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