public string RunThis(HttpRequestMessage request, Guid Id)
{
var urlHelper = new UrlHelper(request);
var parameters = new Dictionary<string, object>
{
{ "documentId", Id }
};
urlHelper.Link("DeleteDocument", parameters)
// In immediate window: "http://localhost:55328/api/Document/373c13da-aeb7-41f8-af66-ca78a06f7964"
// Finally. The solution is to create a dictionary.
}