[Solved] Making REST API Requests (GET/POST/PUT/DELET) in c# console


Use the HttpClient class available in .NET Core. This class contains methods for all of the HTTP operations you mentioned (such as PostAsJson). It will also handle any object-to-Json serialisation for you.

solved Making REST API Requests (GET/POST/PUT/DELET) in c# console