Price Quote service provides quick product pricing including options and turnaround-times.
Resource URI
GET /printproducts/productquote?product_uuid={product_uuid}&colorspec_uuid={colorspec_uuid}&runsize_uuid={runsize_uuid}&turnaroundtime_uuid={tunraroundtime_uuid}&options[]={option_uuid}
Input Parameters
@param product_uuid {uuid} Product UUID. @param colorspec_uuid {uuid} Colorspec UUID. @param runsize_uuid {uuid} Runsize UUID. @param tunraroundtime_uuid {uuid} Turnaround-time UUID. @param option_uuid {uuid} Array of Option UUIDs. This could contain one or more Option UUIDs.
Sample Request URI
html
https://api.4over.com/printproducts/productquote?product_uuid=217c1239-409b-4efb-8e2b-57f9b1d2071a&colorspec_uuid=13abbda7-1d64-4f25-8bb2-c179b224825d&runsize_uuid=6237a36b-b046-4ef6-8fed-6cb9c22a5ece&turnaroundtime_uuid=e04b099b-4ac3-4a35-84d0-c530df7b7aff&options[]=693e0d4e-af90-4796-9ba3-e200b26a5d59
The response contains the details of the quote request and all prices including the base price, total of option prices, turnaround price and the sum of all as a total price.
Any combination that does not match a valid product combination will return a 404 error.
Sample Response
JSON
{ product_uuid: "217c1239-409b-4efb-8e2b-57f9b1d2071a", product_code: "100GLC-FLUC-8.5X11", product_name: "100GLC-FLUC-8.5X11", product_decription: "8.5" x 11" 100LB Gloss Cover With No AQ", runsize_uuid: "6237a36b-b046-4ef6-8fed-6cb9c22a5ece", colorspec_uuid: "13abbda7-1d64-4f25-8bb2-c179b224825d", options: [ [ "9589f320-e91f-48ce-a0d7-3badd39f2c14" ] ], base_price: 95, options_price: 17.5, turnaroundtime_price: 114, total_price: 226.5 }