/wallet/proposaldelete REST API Endpoint
Körperparameter
owner_address
Zeichenkette
ERFORDERLICH
Wird geladen...
Vorschlags-ID
Ganzzahl
ERFORDERLICH
Wird geladen...
permission_id
Ganzzahl
Wird geladen...
sichtbar
boolesch
Wird geladen...
Rücksendungen
Ergebnis
Wird geladen...
Nachricht
Wird geladen...
txID
Wird geladen...
Anfrage
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"proposal_id": 89,8"visible": true9}10'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"proposal_id": 89,8"visible": true9}10'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete';23const Daten = {4owner_address: 'OWNER_ADDRESS',5proposal_id: 89,6sichtbar: true7};89abrufen(url, {10Methode: 'POST',11headers: {12„akzeptieren“: 'application/json',13'content-type': 'application/json'14},15Körper: JSON.stringify(data)16})17.dann(Antwort => Antwort.json())18.dann(Daten => Konsole.log(Daten))19.catch(Fehler => Konsole.Fehler(Fehler));20
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete';23const Daten = {4owner_address: 'OWNER_ADDRESS',5proposal_id: 89,6sichtbar: true7};89abrufen(url, {10Methode: 'POST',11headers: {12„akzeptieren“: 'application/json',13'content-type': 'application/json'14},15Körper: JSON.stringify(data)16})17.dann(Antwort => Antwort.json())18.dann(Daten => Konsole.log(Daten))19.catch(Fehler => Konsole.Fehler(Fehler));20
1import Anfragen23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete"45Daten = {6'owner_address': 'OWNER_ADDRESS',7'proposal_id': 89,8'visible': True9}1011Überschriften = {12„akzeptieren“: 'application/json',13'content-type': 'application/json'14}1516Antwort = Anfragen.POST(URL, json=data, headers=Kopfzeilen)17Drucken(Antwort.json())18
1import Anfragen23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete"45Daten = {6'owner_address': 'OWNER_ADDRESS',7'proposal_id': 89,8'visible': True9}1011Überschriften = {12„akzeptieren“: 'application/json',13'content-type': 'application/json'14}1516Antwort = Anfragen.POST(URL, json=data, headers=Kopfzeilen)17Drucken(Antwort.json())18
1require "uri"2require „net/http“34url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete")56Daten = {7'owner_address' => 'OWNER_ADDRESS',8'proposal_id' => 89,9'visible' => true10}1112Überschriften = {13„akzeptieren“ => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.host, URL.Port)18http.use_ssl = true1920Anfrage = Netto::HTTP::POST.new(URL.Pfad, Header)21Anfrage.Inhalt = Daten.to_json2223Antwort = http.Anfrage(Anfrage)24gibt die Antwort aus.Hauptteil25
1require "uri"2require „net/http“34url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/proposaldelete")56Daten = {7'owner_address' => 'OWNER_ADDRESS',8'proposal_id' => 89,9'visible' => true10}1112Überschriften = {13„akzeptieren“ => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.host, URL.Port)18http.use_ssl = true1920Anfrage = Netto::HTTP::POST.new(URL.Pfad, Header)21Anfrage.Inhalt = Daten.to_json2223Antwort = http.Anfrage(Anfrage)24gibt die Antwort aus.Hauptteil25
Haben Sie noch kein Konto?
Erstellen Sie Ihren Quicknode-Endpunkt in Sekundenschnelle und legen Sie los
Kostenlos loslegen