post https://api.bitfinex.com/v1/offer/cancel
Cancel an offer.
Response Details
Result of /offer/status for the cancelled offer.
Responses
Cancel an offer.
Response Details
Result of /offer/status for the cancelled offer.
xxxxxxxxxx
18// view how to authenticate here:
// https://docs.bitfinex.com/v1/docs/rest-auth
​
var payload = {
request: '/v1/offer/cancel,
nonce: Date.now().toString(),
offer_id: 13800585
}
​
// or use bitfinex-api-node
​
const BFX = require('bitfinex-api-node')
const bfxRest = new BFX(apiKey, apiSecretKey, {version: 1}).rest
​
bfxRest.cancel_offer(13800585 , (err, res) => {
if (err) console.log(err)
console.log(res)
})
Try It!
to start a request and see the response here! Or choose an example: