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
Rajesh-Kolli
New Member

Get Azure DevOps Sprint Capacity data through Rest API into PBRS for last six sprints

Hi Everyone,

 

I tried the web api method to get the sprint capacity but only for an iteration with iteration id and I'm not able to query it by date or for last six sprints.

 

Any help in this is highly appreciated .

 

BR,

Raj

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Rajesh-Kolli 

Here are some offical blogs for you, I hope they could help you.

For reference:

Connect with data by using OData queries - Azure DevOps | Microsoft Docs

Connect to Power BI Data Connector - Azure DevOps | Microsoft Docs

If you need use Azure DevOps API, please refer to the code below.

let
    Source = Json.Document(
        Web.Contents(
            "https://dev.azure.com/{organization}/{project}/_apis/work/teamsettings/iterations/{iterationId}/capacities/{teamMemberId}?api-version=6.0"
        )
    ),
    #"Converted to Table" = Table.FromRecords({Source})
in
    #"Converted to Table"

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hello @Rajesh-Kolli , did you get the solution for this, If yes, can you please share it ?

Your help in this is highly appreciated .

 

BR,

Utkarsh

Anonymous
Not applicable

Hi @Rajesh-Kolli 

Here are some offical blogs for you, I hope they could help you.

For reference:

Connect with data by using OData queries - Azure DevOps | Microsoft Docs

Connect to Power BI Data Connector - Azure DevOps | Microsoft Docs

If you need use Azure DevOps API, please refer to the code below.

let
    Source = Json.Document(
        Web.Contents(
            "https://dev.azure.com/{organization}/{project}/_apis/work/teamsettings/iterations/{iterationId}/capacities/{teamMemberId}?api-version=6.0"
        )
    ),
    #"Converted to Table" = Table.FromRecords({Source})
in
    #"Converted to Table"

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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 Fabric 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 Solution Authors