using System;
using Newtonsoft.Json;
public class Program
{
public static void Main()
var response = new { ID = 1, URL = "http://test", Customer = "Whatever" };
Console.WriteLine(JsonConvert.SerializeObject(response));
}