/wallet/exchangewithdraw REST API Endpoint
身体参数
owner_address
字符串
必填
正在加载...
exchange_id
字符串
必填
正在加载...
token_id
整数
必填
正在加载...
permission_id
整数
正在加载...
visible
布尔型
正在加载...
quant
整数
必填
正在加载...
退货
结果
正在加载...
消息
正在加载...
txID
正在加载...
请求
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"visible": true11}12'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"visible": true11}12'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw';23const data = {4"owner_address": "OWNER_ADDRESS",5"exchange_id": 12,6"token_id": "TOKEN_ID",7"quant": 100,8"visible": true9};1011const options = {12method: "POST",13headers: {14"accept": "application/json",15"content-type": "application/json"16},17body: JSON.stringify(data)18};1920fetch(url, options)21.then(response => response.json())22.then(data => console.log(data))23.catch(error => console.error(error));24
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw';23const data = {4"owner_address": "OWNER_ADDRESS",5"exchange_id": 12,6"token_id": "TOKEN_ID",7"quant": 100,8"visible": true9};1011const options = {12method: "POST",13headers: {14"accept": "application/json",15"content-type": "application/json"16},17body: JSON.stringify(data)18};1920fetch(url, options)21.then(response => response.json())22.then(data => console.log(data))23.catch(error => console.error(error));24
1导入 请求23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw"45有效载荷 = {6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"visible": True11}1213标题 = {14"accept": "application/json",15"content-type": "application/json"16}1718response = requests.post(url, json=payload, headers=headers)1920print(response.json())21
1导入 请求23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw"45有效载荷 = {6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"visible": True11}1213标题 = {14"accept": "application/json",15"content-type": "application/json"16}1718response = requests.post(url, json=payload, headers=headers)1920print(response.json())21
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw")67数据 = {8"owner_address" => "OWNER_ADDRESS",9"exchange_id" => 12,10"token_id" => "TOKEN_ID",11"quant" => 100,12"visible" => true13}1415标题 = {16"accept" => "application/json",17"content-type" => "application/json"18}1920http = Net::HTTP.new(url.host, url.port)21http.use_ssl = true2223request = Net::HTTP::Post.new(url, headers)24请求.请求体 = data.to_json2526回复 = http.请求(请求)2728返回响应.正文29
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangewithdraw")67数据 = {8"owner_address" => "OWNER_ADDRESS",9"exchange_id" => 12,10"token_id" => "TOKEN_ID",11"quant" => 100,12"visible" => true13}1415标题 = {16"accept" => "application/json",17"content-type" => "application/json"18}1920http = Net::HTTP.new(url.host, url.port)21http.use_ssl = true2223request = Net::HTTP::Post.new(url, headers)24请求.请求体 = data.to_json2526回复 = http.请求(请求)2728返回响应.正文29