Forum Discussion
satyabsai
Jul 10, 2025Copper Contributor
Azurepipeline Extension- doesn't give any error nor able to show dynamic dropdown value
I have created an extension, pushed to Marketplace & then used it in my org all this went so smooth. then when I started building Pipe line at TASK step when I choose my extension it is populating ...
Kidd_Ip
Jul 12, 2025MVP
Azure DevOps expects the response to match the itemPattern you've defined:
[
{
"value": "BMWX7",
"displayValue": "BMW X7"
},
{
"value": "AudiQ5",
"displayValue": "Audi Q5"
}
]
Each item must be a flat object with value and displayValue keys. If your endpoint returns anything nested or missing those keys, the dropdown will show “Not Found.”