/quickalerts/rest/v1/destinations/{id} REST MethodPath ParametersidstringREQUIREDThe ID of the destination.Returns 200 OKRequestcurl -X DELETE \ "https://api.quicknode.com/quickalerts/rest/v1/destinations/{id}" \ -H "accept: application/json" \ -H "x-api-key: YOUR_API_KEY" var myHeaders = new Headers() myHeaders.append('accept', 'application/json') myHeaders.append('x-api-key', 'YOUR_API_KEY') var requestOptions = { method: 'DELETE', headers: myHeaders, redirect: 'follow', } fetch( 'https://api.quicknode.com/quickalerts/rest/v1/destinations/{id}', requestOptions ) .then(response => response.text()) .then(result => console.log(result)) .catch(error => console.log('error', error)) import requests url = "https://api.quicknode.com/quickalerts/rest/v1/destinations/{id}" payload = {} headers = { 'accept': 'application/json', 'x-api-key': 'YOUR_API_KEY' } response = requests.request("DELETE", url, headers=headers, data=payload) print(response.text) require "uri" require "net/http" url = URI("https://api.quicknode.com/quickalerts/rest/v1/destinations/{id}") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Delete.new(url) request["accept"] = "application/json" request["x-api-key"] = "YOUR_API_KEY" response = https.request(request) puts response.read_body Don't have an account yet?Create your QuickNode endpoint in seconds and start buildingGet started for free