Cancel one of the user's open requests.
curl --request DELETE \
--url https://api.symbiosis.markets/rfq/request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.symbiosis.markets/rfq/request"
payload = { "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({request_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.symbiosis.markets/rfq/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));RFQ
Cancel one of the user's open requests.
DELETE
/
rfq
/
request
Cancel one of the user's open requests.
curl --request DELETE \
--url https://api.symbiosis.markets/rfq/request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.symbiosis.markets/rfq/request"
payload = { "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({request_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.symbiosis.markets/rfq/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));