Hi all,
I have successfully created a helpdesk intake form and it creates a ticket in Azure DevOps just fine. However, I can't figure out how to get the new ID that was created in Azure back to my power app. I am using AzureDevOps.CreateWorkItem and in monitoring I can see the response showing the ID in the body that is returned, but I have tried lots of ways to try to get to this but everything gives me an error.
here is the section of the response I am trying to get at:
"body": {
"id": 7305,
"rev": 1,
"fields": {
"System_Id": 7305,
"System_AreaId": 10,
Here is my call, I just want to capture the ID that was created in ADO and show it in a text field or label back in power Apps.
AzureDevOps.CreateWorkItem("Quality", "Tasks", "myOrg", SubjectOfReq.Text, {shouldReturnAllFields:true, description:MainDetailDesc.Text, iteration:"Quality\SPRINT BACKLOG",priority:"4",userEnteredFields:Table({key:"Assigned To",value:"Michelle Keller"}, {key:"Requester Name", value:UserName.Text}, {key:"Epic Name", value:"Helpdesk"})});
Any help is much appreciated. Thank you.