
Hello everyone — I’m having trouble retrieving custom fields from Azure DevOps using the Azure DevOps connector in Power Apps.
What I’m doing
If(
IsBlank(ThisItem);
Notify("Select an element First!."; NotificationType.Warning);
Set(
selectedItem;
AzureDevOps.GetWorkItemDetails(
ThisItem.'System.Id';
"myorg";
"myproject";
ThisItem.'System.WorkItemType'
)
)
);;
What’s working
All System.* fields are returned correctly (examples: System.Title, System.AssignedTo, System.State).
What’s not working
Custom fields (e.g., Custom.Severity, Custom.CustomerID, or fields with names like MyCompany.MyField) are not returned or are returned as null.
I’ve tried different variations such as using the internal reference name, display name, and different casing, but nothing has worked.
What I’ve tried so far
Verified the custom fields exist in the work item type definition in Azure DevOps.
Confirmed the fields are populated on sample work items when viewed in Azure DevOps.
Tried using the field’s reference name (e.g., Custom.MyField) and the display name.
Checked connector permissions and ensured the connection uses an account with access to those fields.