Home > Software engineering >  Azure web api how to view hierarchy related/linked ticket
Azure web api how to view hierarchy related/linked ticket

Time:03-05

I have an azure epic ticket (1165) that has a linked child story ticket (1162) enter image description here

I want to be able to view this linked child ticket field in the json api view, If I visit the api url for my ticket like so:

enter image description here

Is there some way I can format my url so that I can see my tickets linked child items? thanks

CodePudding user response:

Add &$expand={$expand} to the end of your URL:

https://dev.azure.com/{organization}/dc37----8a2/_apis/wit/workItems/1165?$expand=relations

Documentation: enter image description here

  • Related