patch https://api.northstake.dk/v1/validatorMarketplace/sellers/documents///rejectQuote
Endpoint for sellers (depositors) to reject an RFQ quote for a validator set in the validator marketplace.This will disable the entire rfq and all quotes associated with it.
import { NorthstakeApi } from '@northstake/northstakeapi'
const api = new NorthstakeApi('apiKey', 'privateKey')
const rfqId = 'rfq-id-1234'
const quoteId = '1234'
const result = await api.validatorMarketplaceSellers.rejectQuote(rfqId, quoteId)
if (result.status === 200) {
console.log('Quote rejectedsuccessfully')
}