Send DELETE request with json in body vs url?

i have a seemingly poorly implemented service i have to call and it is expecting the payload of the DELETE verb to be json in the body vs the url.

is it possible to do this either with DTOs or otherwise?

ServiceStack C# Service Clients or HTTP Utils doesn’t support sending DELETE requests with a Request BODY. You could try using .NET’s HttpClient or HttpWebRequest client directly to see if they allow sending DELETE’s with a Request body.