I\'m trying to make a POST request using RestSharp to create an issue in JIRA, and what I have to work with is an example that uses cURL. I\'m not familiar with either enough to
dont do
request.AddParameter("data", request.JsonSerializer.Serialize(issueToCreate));
instead try:
request.AddBody(issueToCreate);