Body
body
curl -X DELETE https://tcpdata.com/delete
fetch('https://tcpdata.com/delete', {
method: 'DELETE'
})
.then(res => res.json())
.then(data => console.log(data));
import requests
response = requests.delete('https://tcpdata.com/delete')
print(response.json())