Accept a quote, matching the request.
curl --request POST \
--url https://api.symbiosis.markets/rfq/accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"offer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.symbiosis.markets/rfq/accept"
payload = { "offer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({offer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.symbiosis.markets/rfq/accept', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));RFQ
Accept a quote, matching the request.
POST
/
rfq
/
accept
Accept a quote, matching the request.
curl --request POST \
--url https://api.symbiosis.markets/rfq/accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"offer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.symbiosis.markets/rfq/accept"
payload = { "offer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({offer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.symbiosis.markets/rfq/accept', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));