Skip to content

Instantly share code, notes, and snippets.

@yuriycto
Created December 9, 2021 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriycto/b1f42b4a116f106aa2e073f2a55e9793 to your computer and use it in GitHub Desktop.
Save yuriycto/b1f42b4a116f106aa2e073f2a55e9793 to your computer and use it in GitHub Desktop.
Send to Acumatica
using System;
using System.IO;
using System.Net;
using Newtonsoft.Json;
namespace ConsoleApp1
{
public class ObjectJSON
{
public string Name { get; set; }
}
class Program
{
static void Main(string[] args)
{
var URL = "http://localhost/WebHooks/Webhooks/WebHooksConfiguration/0a152235-121e-4a20-b425-a2239011f0b3";
var httpRequest = (HttpWebRequest)WebRequest.Create(URL);
httpRequest.Method = "POST";
httpRequest.Accept = "application/json";
httpRequest.ContentType = "application/json";
string obj = JsonConvert.SerializeObject(new ObjectJSON { Name = "Test WebHooks" });
using (var streamWriter = new StreamWriter(httpRequest.GetRequestStream()))
{
streamWriter.Write(obj);
}
var httpResponse = (HttpWebResponse)httpRequest.GetResponse();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
{
var result = streamReader.ReadToEnd();
}
Console.WriteLine(httpResponse.StatusCode);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment