Reputation: 1020
When we select sonar issue in SonarQube it gives estimated fix time based on the project rules ( for example 45 mins in the uploaded image)
Is there a method of getting this value from SonarApi. There is a way to get Technical Debt for whole project.
Upvotes: 1
Views: 243
Reputation: 529
You can used the API /api/issues/search with the componentKeys and issues parameters then check the "debt" / "effort field where you will find what you are calling "estimated fix time".
Upvotes: 1