RFQ & Quotes
The RFQ (Request for Quote) API is the primary integration point between the Procurement app and the Directory. It enables the full sourcing workflow: creating RFQs, assigning suppliers, collecting quotes, and retrieving quote comparisons.
Integration Workflow
- Procurement app creates an RFQ via
POST /v1/rfq/inbound - Directory team reviews the RFQ and assigns relevant suppliers
- Suppliers are contacted and submit their quotes
- Procurement app retrieves quotes via
GET /v1/rfq/:id/quotes - Procurement buyer compares quotes and selects a supplier
Register a webhook for rfq.quote_submitted to get real-time notifications when new quotes arrive, instead of polling.
Available Endpoints
POST
/v1/rfq/inboundCreate RFQ from procurement
rfq.write
GET
/v1/rfqList RFQs
rfq.read
GET
/v1/rfq/:idGet RFQ with items
rfq.read
PUT
/v1/rfq/:idUpdate RFQ
rfq.write
GET
/v1/rfq/:id/quotesGet quotes for RFQ
rfq.read
POST
/v1/rfq/:id/quotesSubmit a quote
quotes.write
POST
/v1/rfq/:id/suppliersAssign suppliers
rfq.write
DELETE
/v1/rfq/:id/suppliers/:supplierIdRemove supplier
rfq.write
Last updated on February 23, 2026