v1/pinning/{requestId} REST API Endpoint
Pfadparameter
requestId
Zeichenkette
ERFORDERLICH
Wird geladen...
Rücksendungen
Status
Wird geladen...
Anfrage
1curl --location --request DELETE 'https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}' \2--header 'x-api-key: YOUR_API_KEY'
1curl --location --request DELETE 'https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}' \2--header 'x-api-key: YOUR_API_KEY'
1var myHeaders = new Headers();2myHeaders.anhängen("x-api-key", "YOUR_API_KEY");34var requestOptions = {5method: 'DELETE',6Überschriften: myHeaders,7Weiterleitung: 'follow'8};910fetch("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}", requestOptions)11.dann(Antwort => Antwort.text())12.dann(Ergebnis => Konsole.log(Ergebnis))13.catch(error => console.log('error', error));
1var myHeaders = new Headers();2myHeaders.anhängen("x-api-key", "YOUR_API_KEY");34var requestOptions = {5method: 'DELETE',6Überschriften: myHeaders,7Weiterleitung: 'follow'8};910fetch("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}", requestOptions)11.dann(Antwort => Antwort.text())12.dann(Ergebnis => Konsole.log(Ergebnis))13.catch(error => console.log('error', error));
1import Anfragen23url = "https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}"45Nutzlast = {}6Überschriften = {7'x-api-key': 'YOUR_API_KEY'8}910response = requests.request("DELETE", url, headers=headers, data=payload)1112Drucken(Antwort.text)13
1import Anfragen23url = "https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}"45Nutzlast = {}6Überschriften = {7'x-api-key': 'YOUR_API_KEY'8}910response = requests.request("DELETE", url, headers=headers, data=payload)1112Drucken(Antwort.text)13
1require "uri"2require „net/http“34url = URI("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}")56https = Net::HTTP.new(url.host, URL.Port)7https.use_ssl = true89request = Net::HTTP::Delete.new(url)10Anfrage[„x-api-key“] = "YOUR_API_KEY"1112Antwort = https.Anfrage(Anfrage)13gibt die Antwort aus.read_body14
1require "uri"2require „net/http“34url = URI("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}")56https = Net::HTTP.new(url.host, URL.Port)7https.use_ssl = true89request = Net::HTTP::Delete.new(url)10Anfrage[„x-api-key“] = "YOUR_API_KEY"1112Antwort = https.Anfrage(Anfrage)13gibt die Antwort aus.read_body14
Haben Sie noch kein Konto?
Erstellen Sie Ihren Quicknode-Endpunkt in Sekundenschnelle und legen Sie los
Kostenlos loslegen