Post with c# app code example
Example 1: how to POST in c#
using System;
using System.Collections.Specialized;
using System.Net;
namespace API_Console_App
{
class Program
{
static void Main(string[] args)
{
string url = "URL_HERE";
WebClient client = new WebClient();
NameValueCollection values = new NameValueCollection();
values.Add("data-name", "content");
client.UploadValues(url, values);
}
}
}
Example 2: how make a post request c#
RestClient restClient =
new RestClient(string.Format("{0}/myservice/api/endpoint", "https://exampledomain.com:88"));
RestRequest request = new RestRequest(Method.POST);
request.RequestFormat = DataFormat.Json;
request.AddJsonBody(data);
request.AddHeader("Accept", "application/pdf");
var result = restClient.Execute(request);