curl -X DELETE https://authifypass.com/user/example
using var client = new HttpClient();
client.BaseAddress = new Uri("https://authifypass.com");
using var response = await client.DeleteAsync("user/example");response.EnsureSuccessStatusCode();
var content = await response.Content.ReadAsStringAsync();
fetch("https://authifypass.com/user/example", {
method: "DELETE",
})
.then(res => res.json())
.then(data => console.log(data));