Quote Request
Allows suppliers to directly receive quote requests and respond without any human interaction.
Last updated
Was this helpful?
Allows suppliers to directly receive quote requests and respond without any human interaction.
Last updated
Was this helpful?
BidUnity can send a quote request to a supplier through a RESTful web service. The supplier must have a webhook endpoint setup to receive the request. Contact to setup this endpoint.
POST
https://your-supplier-site.com/v1/quote/request
BidUnity will make a POST request to the supplier's endpoint when a user starts a quote request from within BidUnity. The supplier has full control over what the URL is to that endpoint; it must be configured by BidUnity support.
Content-type
string
application/json
BidUnity-Key
string
Contains your Webhook key to verify that the request came from BidUnity.
request_id
string
A random, unique identifier for the quote. This must be sent back to BidUnity when responding with the quote.
request_type
string
The type of request being made. For quote requests this will be quote
. Orders will be order
.
company_id
string
The id of the company making the request.
company_name
string
The name of the company making the request.
deliver_to
object
The address of where the materials should be delivered. This will include the following string fields: line1
, line2
, city
, state
, zip
, country
project_id
string
The id of the project.
project_name
string
The name of the project.
proposal_id
string
The id of the proposal within the project.
proposal_name
string
The name of the proposal.
parts
array
Contains an array of Part objects to be quoted. This can be an empty array. See the Part object for the structure of each object.
doors
array
Contains an array of Door objects to be quoted. This can be an empty array. See the Door object for the structure of each object.
total_cost
number
The total cost that BidUnity calculated for all parts and doors in the quote request. Note this is provided for information purposes only and may differ from the actual amount quoted.
See the and for more information on these objects.