I'm trying to sync VSTS with a system we currently use for work items. I'd like to create a work item with a certain id, so that it matches the other system.
Example, current system creates work item #471, I want to call the VSTS api to create a work item with that same 471 id.
Is this possible? It seems the id is only returned as part of the result and can't be set.
From the docs:
WorkItem result = workItemTrackingHttpClient.CreateWorkItemAsync(patchDocument, project, "Bug").Result;
Console.WriteLine("Bug Successfully Created: Bug #{0}", result.Id);
But I want to set that Id beforehand.