// POST tables/TodoItem public async Task <IHttpActionResult> PostTodoItem(TodoItem item) { TodoItem current = await InsertAsync(item); #pragma warning disable CS4014 Webhook.SendAsync <TodoItem>(new Uri(webhookUri), current); #pragma warning restore CS4014 return(CreatedAtRoute("Tables", new { id = current.Id }, current)); }