This route returns list of all base prices considering runsizes and colorspecs for a specific product.
It also returns “can_group_ship” flag identifying if the product, runsize and colorspec combination is qualified for group shipping.
Resource URI
GET /printproducts/products/{product_uuid}/baseprices
Input Parameters
@param product_uuid {uuid} The UUID of product.
Sample Request
html
https://api.4over.com/printproducts/products/97797e2e-3e3b-429e-a38a-d5f8d8744de5/baseprices
Sample Response
JSON
{ entities: [ { base_price_uuid: "07096a3d-7d02-4ce9-9214-cc428fdccda0", product_baseprice: "6.50", runsize_uuid: "8a3a0fd1-38ae-49a0-8736-3fedadc3dc93", runsize: "100", colorspec_uuid: "32d3c223-f82c-492b-b915-ba065a00862f", colorspec: "4/0", product_uuid: "90988145-57a1-40c6-a29e-904ecd3f96e1", can_group_ship: false }, { base_price_uuid: "35b17d79-1786-4806-badc-70784705282f", product_baseprice: "6.50", runsize_uuid: "8a3a0fd1-38ae-49a0-8736-3fedadc3dc93", runsize: "100", colorspec_uuid: "2fd6ad29-756c-4927-a66f-b0c0116e31f9", colorspec: "4/1", product_uuid: "90988145-57a1-40c6-a29e-904ecd3f96e1", can_group_ship: false }, ... { base_price_uuid: "90f559e8-5d29-48b4-9452-a37063b35530", product_baseprice: "59.00", runsize_uuid: "64880f6e-cc7a-4974-838c-92be09e9eb52", runsize: "7500", colorspec_uuid: "2fd6ad29-756c-4927-a66f-b0c0116e31f9", colorspec: "4/1", product_uuid: "90988145-57a1-40c6-a29e-904ecd3f96e1", can_group_ship: false } ], totalResults: 78, currentPage: 0, maximumPages: 20 }