namespace HelloWorldApplication {
static void Main(string[] args) {
var client = new RestClient("http://localhost:4440/api/21/job/50aa1e22-3e75-41fd-aa07-0cc5e5b2666e/run");
var request = new RestRequest(Method.POST);
request.AddHeader("Accept", "application/json");
request.AddHeader("X-Rundeck-Auth-Token", "EsMOdQNJy43Jg3WbtkGEGp3L3T1yhZ4w");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);