Quote Response

Allows suppliers to respond with a quote through a web service API. This API call is made after receiving a quote request.

Quote Response Information

POST https://bidunity.com/supplier/api/v1/quote/response

Sends a quote to BidUnity in response to a quote request.

Headers

Name
Type
Description

Authorization

string

Must contain your API key as Base64 encoded string. See HTTP Basic Auth for details.

Content-type

string

application/json

Request Body

Name
Type
Description

request_id

string

The unique identifier of the quote request this is responding to.

total_amount

number

The total amount of the quote, inclusive of everything including tax and shipping, if applicable.

tax

number

The estimated tax for the materials, if applicable.

shipping

number

The estimated shipping for the materials, if applicable.

notes

string

Any notes or exceptions to convey for the quote.

needs_confirmation

boolean

Whether confirmation is needed by staff.total_

delivery_date

number

The estimated date that the materials could be delivered. This is a timestamp in milliseconds.

quoted_by

string

Name of the person that created the quote, if applicable.

contact_name

string

Name of the person to contact with questions.

contact_email

string

Email address for the point of contact.

contact_phone

string

Phone number for the point of contact.

string

string

string

string

string

{ }
curl https://api.bidunity.com/v1/quote/response \
  -u your_api_key: \
  -d request_id="@/path/to/a/file.pdf" \
  -d total_amount=5683.75
  -d tax=358.75
  -d shipping=200
  -d notes="This is our best offer!"
  -d delivery_date=1585761463
  -d quoted_by="John Doe"

Last updated

Was this helpful?