I need to get the list of allowed values in a field (that aren't in a global list) using the TFS 2015 REST API for a particular work item type. I know that I can get information about a field with Get a work item field but that doesn't seem to give me the allowed values in the response.
{
"name": "Iteration Path",
"referenceName": "System.IterationPath",
"type": "treePath",
"readOnly": true,
"supportedOperations": [
{
"referenceName": "SupportedOperations.Under",
"name": "Under"
},
{
"referenceName": "SupportedOperations.NotUnder",
"name": "Not Under"
},
{
"referenceName": "SupportedOperations.Equals",
"name": "="
},
{
"referenceName": "SupportedOperations.NotEquals",
"name": "<>"
},
{
"referenceName": "SupportedOperations.In",
"name": "In"
}
],
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.IterationPath"
}
It looks like someone on the MSDN forums posted this back in June, but I want to double-check if this is still something that isn't yet available.