v1/pinning/{requestId} REST API Endpoint
경로 매개변수
requestId
문자열
필수
로딩 중...
반품
상태
로딩 중...
요청
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.추가("x-api-key", "YOUR_API_KEY");34var requestOptions = {5method: 'DELETE',6헤더: myHeaders,7리디렉션: 'follow'8};910fetch("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}", requestOptions)11.그런 다음(응답 => response.text())12.그런 다음(결과 => console.log(result))13.catch(오류 => console.log('error', error));
1var myHeaders = new Headers();2myHeaders.추가("x-api-key", "YOUR_API_KEY");34var requestOptions = {5method: 'DELETE',6헤더: myHeaders,7리디렉션: 'follow'8};910fetch("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}", requestOptions)11.그런 다음(응답 => response.text())12.그런 다음(결과 => console.log(result))13.catch(오류 => console.log('error', error));
1import 요청23url = "https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}"45페이로드 = {}6헤더 = {7'x-api-key': 'YOUR_API_KEY'8}910답변 = 요청.요청("DELETE", url, 헤더=헤더, data=페이로드)1112인쇄(응답.text)13
1import 요청23url = "https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}"45페이로드 = {}6헤더 = {7'x-api-key': 'YOUR_API_KEY'8}910답변 = 요청.요청("DELETE", url, 헤더=헤더, data=페이로드)1112인쇄(응답.text)13
1require "uri"2require "net/http"34url = URI("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}")56https = Net::HTTP.new(url.호스트, url.포트)7https.use_ssl = true89요청 = 순::HTTP::삭제.새(URL)10요청["x-api-key"] = "YOUR_API_KEY"1112답변 = https.요청(요청)13응답을 넣습니다.read_body14
1require "uri"2require "net/http"34url = URI("https://api.quicknode.com/ipfs/rest/v1/pinning/{requestId}")56https = Net::HTTP.new(url.호스트, url.포트)7https.use_ssl = true89요청 = 순::HTTP::삭제.새(URL)10요청["x-api-key"] = "YOUR_API_KEY"1112답변 = https.요청(요청)13응답을 넣습니다.read_body14