BidUnity Help Center
  • BidUnity Help Center
  • Getting Started
    • Getting Started
    • Projects
    • Proposals
    • Deep Dive
  • Drawings
    • Elevation Drawings
  • Part & Cut Lists
    • Optimized Cut List
    • Glass Lists
    • Packing Lists
  • System Configurations
    • Overview
    • Component Types
    • Parts
    • Part Size Calculations
    • Doors
      • Door Frames
      • Door Leafs
      • Door Components
  • Mobile App
    • Overview
  • Supplier API
    • API Overview
    • Quote Request
    • Quote Response
    • Quote Response File
    • Reference
      • Objects
        • Part Object
        • Door Object
      • Types
        • Door Frame Components
        • Door Leaf Components
        • Finish Colors
        • Finish Types
  • Settings
    • User Settings
    • Company Settings
  • Back to BidUnity
Powered by GitBook
On this page

Was this helpful?

  1. Supplier API

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

{ }
{ "error": "Description of the error that occurred." }
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"
PreviousQuote RequestNextQuote Response File

Last updated 5 years ago

Was this helpful?