Asp.net – Trouble turning class into API call body with null properties
The following code snippet I use to send a response to an endpoint: public static async Task PostPosition(string authorizationHeader, string apiUrl, string subDirectory, string xRoutingToken, string xApiKey, CustomObject payload) { using (HttpClient client = new HttpClient()) { // Set up…