/webhooks/rest/v1/webhooks/{id}/pause REST API EndpointPath ParametersidstringREQUIREDLoading...Returns 201 CreatedLoading...Requestcurl -X POST \ "https://api.quicknode.com/webhooks/rest/v1/webhooks/YOUR_WEBHOOK_ID/pause" \ -H "accept: application/json" \ -H "x-api-key: YOUR_API_KEY" const axios = require('axios') const webhookId = 'YOUR_WEBHOOK_ID' // Replace with your actual webhook ID const url = `https://api.quicknode.com/webhooks/rest/v1/webhooks/${webhookId}/pause` const headers = { accept: 'application/json', 'x-api-key': 'YOUR_API_KEY', // Replace with your actual API key } axios .post(url, {}, { headers }) .then(response => { console.log(response.data) }) .catch(error => { console.error('Error:', error.response?.data || error.message) }) import requests webhook_id = "YOUR_WEBHOOK_ID" # Replace with your actual webhook ID url = f"https://api.quicknode.com/webhooks/rest/v1/webhooks/{webhook_id}/pause" headers = { 'accept': 'application/json', 'x-api-key': 'YOUR_API_KEY' } response = requests.request("POST", url, headers=headers) print(response.text) require "uri" require "net/http" webhook_id = "YOUR_WEBHOOK_ID" # Replace with your actual webhook ID url = URI("https://api.quicknode.com/webhooks/rest/v1/webhooks/#{webhook_id}/pause") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["accept"] = "application/json" request["x-api-key"] = "YOUR_API_KEY" response = https.request(request) puts response.body Try in SwaggerDon't have an account yet?Create your QuickNode endpoint in seconds and start buildingGet started for free