When creating a VSTS action that creates a new work item, I attempt to update the State field with free text with the string "Active". The flow then fails because this state is not valid (fails with or without quotes). Is a string allowed in this field or does this need to be updated with dynamic state data? The field itself contains directions that say "New = for triage; Active = not yet fixed; Resolved = fixed not yet verified; Closed = fix verified." When it fails, it fails with the following body:
{
"status": 400,
"message": "The field 'State' contains the value 'Active' that is not in the list of supported values\r\nclientRequestId: 799f4ca4-44b8-4af9-a693-1b7878482864",
"source": "vsts-wcus.azconn-wcus.p.azurewebsites.net"
}
What are the supported values? Where would I find this list?
This runs successfully if I use the dynamic field State from a previous flow action.