Query:
wiql_query = {
“query”: f”””SELECT [System.Id], [System.Title], [System.Tags]
FROM WorkItems
WHERE [System.TeamProject] = ‘{project_name}’
AND [System.Title] = ‘{str(title_item)}’
AND [System.State] NOT IN (‘Deleted’, ‘Removed’, ‘Closed’)
AND [System.BoardColumn] NOT IN (‘Recycle Bin’)
“””,
}
I was trying to send request using above query but observing error as specified in title
New contributor
Adithya Sharma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.