POST
https://www.pictorem.com/artflow/validatepreorder/
Body
Key | Type | Value |
---|---|---|
form-data | ||
preordercode | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
bordercolorhex | text | ffffff |
thanknotemsg | text | Nullam sagittis molestie augue at dictum. |
PHP Curl
$postData = [ 'preordercode' => '1|acrylic|da9', 'bordercolorhex' => 'ffffff', 'thanknotemsg' => 'Nullam sagittis molestie augue at dictum.', ];
Response (JSON)
Success
Fail
POST
https://www.pictorem.com/artflow/getprice/
Body
Key | Type | Value |
---|---|---|
form-data | ||
preordercode | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
collecionid | text | xxxxxx |
deliveryprovince | text | QC |
deliverycountry | text | Canada |
PHP Curl
$postData = [ 'preordercode' => '2|canvas|stretched|horizontal|30|24|303-12|semigloss|mirrorimage|c15|moulding|opt', ];
Response (JSON)
All Prices are in USD $
Success
{ "status": true, "msg": [], "worksheet": { "enabledDiscount": true, "price": { "list": { "main": 20.0604444444444, "cert": 5 }, "discount": { "main": 6.01813333333332, "cert": 1.5 }, "artistCommission": { "main": 25.0604444444444 }, "artistCommissionDiscount": { "main": 7.51813333333332 }, "subTotal": 35.08462222222215, "taxes": { "taxPercentage": 0.14975, "taxGST": 1.7542311111111077, "taxPST": 3.4996910666666596 }, "total": 40.33854439999992 } } }
Fail
POST
https://www.pictorem.com/artflow/getleadtime/
Body
Key | Type | Value |
---|---|---|
form-data | ||
preordercode | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
PHP Curl
$postData = [ 'preordercode' => '2|canvas|stretched|horizontal|30|24|303-12|semigloss|mirrorimage|c15|moulding|opt', ];
Response (JSON)
Success
{ "status": true, "msg": [], "data": { "productionLeadTime": 8 } }
Fail
POST
https://www.pictorem.com/artflow/sendorder/
Body
Key | Type | Value |
---|---|---|
form-data | ||
ordercomment | text | Proin maximus magna ante, semper porttitor neque tincidunt et. |
---- | ||
deliveryInfo[firstname] | text* | Kathleen |
deliveryInfo[lastname] | text* | Bernal |
deliveryInfo[company] | text | Bennett Brothers |
deliveryInfo[address1] | text* | 3371 Sycamore Lake Road |
deliveryInfo[address2] | text | |
deliveryInfo[city] | text* | Oshkosh |
deliveryInfo[province] | text* | WI |
deliveryInfo[country] | text* | USA |
deliveryInfo[cp] | text* | 54901 |
deliveryInfo[phone] | text | 920-456-7364 |
---- Uploading Image | ||
orderList[0][code] | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
orderList[0][file] | file* | my-file.jpg (jpg/png/tiff) |
orderList[0][thanknotemsg] | text* | Vivamus vel lobortis velit. |
orderList[0][bordercolorhex] | text* | ffffff |
---- Uploading URL | ||
orderList[1][code] | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
orderList[1][fileurl] | text* | https://images.unsplash.com/photo-1686753767715-37cb0c34212c?q=80&w=3987&auto=format |
orderList[1][filetype] | text* | jpg (jpg/png/tiff) |
---- From a Collection | ||
orderList[2][code] | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
orderList[2][collectionID] | text* | 357936 |
PHP Curl
$postData = [ 'delivery[firstname]' => 'Kathleen', 'delivery[lastname]' => 'Bernal', 'order[0][file]' => new CURLFile('/path/to/file.jpg') // Path to the file ];
Response (JSON)
Success
{ "status": true, "msg": [], "orderid": xxxxxx }
Fail
{ "status": false, "msg": { "error": [ "PreOrder Code: 2|canvas|stretched|horizontal|30|24|303-12|semigloss|mirrorimage|c15|mouldin3g|opt is NOT valid." ] }, "orderid": null }
POST
https://www.pictorem.com/artflow/buildproductlist/
Body
Key | Type | Value |
---|---|---|
form-data | ||
preordercode | text* | numCopies|material|type|orientation|width|height|additional|additional|additional|additional |
PHP Curl
$postData = [ 'preordercode' => '1|acrylic|da9', ];
Response (JSON)
Success
{ "status": true, "data": { "preordercode": "1|acrylic|da9", "preordersanitize": "1|acrylic|da8", "products": { ... } } }
Fail
Headers
Key | Value |
---|---|
artFlowKey | 1b060d55ec113cbb752e9e1936dac1cf |
PHP Curl
$url = "https://yourdomain.com/api/upload/"; $secretKey = "abcd"; // Create the form-data fields $postData = [ 'delivery[fname]' => 'ksjdf', 'delivery[lname]' => 'rigme', 'order[0][title]' => 'ifmeirgm', 'order[0][file]' => new CURLFile('/path/to/file.jpg') // Path to the file ]; // Initialize cURL $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $postData); // Send the form-data curl_setopt($ch, CURLOPT_HTTPHEADER, [ "secretKey: $secretKey", // Add the secret key to headers ]); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Execute the cURL request $response = curl_exec($ch); // Check for errors if ($response === false) { echo "cURL Error: " . curl_error($ch); } else { // Process the response echo "Response: " . $response; } // Close the cURL session curl_close($ch);
JavaScript
const formData = new FormData(); // Add delivery details formData.append("delivery[fname]", "ksjdf"); formData.append("delivery[lname]", "rigme"); // Add order details formData.append("order[0][title]", "ifmeirgm"); // Add file to the form data const fileInput = document.querySelector('#fileInput'); formData.append("order[0][file]", fileInput.files[0]); // Perform the fetch POST request fetch("/api/upload/", { method: "POST", headers: { "secretKey": "abcd" // Adding the custom header }, body: formData }) .then(response => { if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } return response.json(); // Assuming the response is JSON }) .then(data => { console.log("Success:", data); }) .catch(error => { console.error("Error:", error); });
Choices | |
---|---|
numCopies | [number] |
material |
canvas metal acrylic paper wood panel puzzle mural specialty |
type |
Canvas: - stretched - roll Metal: - al - alw - hd - hds Acrylic: - da8 - da16 - ac4 - a38 - ng8 Paper: - poster - glossphoto - art - vinyl Wood: - ru14 - pineveneer Panel: - plsintra - plgatorplast - plfomecor - plpvc3 - plpvc5 - mdf12 - cor04 Puzzle: - 120pcs - 315pcs - 500pcs - 1000pcs - 1500pcs Mural: - regular Specialty: - guitar - skateboard - snowboard - surfboard - 12rd - 12sq - 16rd - 16sq - 24rd - 24sq |
orientation |
vertical horizontal square ¹ |
width | [number] |
height | [number] |
additional |
Canvas Type ¹: - regular - matte - semigloss - silver Canvas Wrap ¹: - bordercolor - mirrorimage - imagewrap Canvas Border Color ¹ ²: - textbordercolor Canvas Thickness ¹: - c15 - c075 White Border ¹: - none - wb175 - wb25 Card: - none - thankyou - thanksnote Card Thank You Note ²: - thanksnotemsg Certificate: - none - cert Cutting Option ¹: - none ¹ - circular ¹ - 2inchcut ¹ - roundedcorner ¹ - metalbox ¹ Graphic: - none - opt - retouch Packaging ¹: - none - puzzelbox - puzzelboxgift White Border: - none - blackink - 2intransparency ¹ - selectivetransparency - frost - backlit - autopen - inborder Varnish ¹: - none - epoxy ¹ - knife ¹ Mounting: - none - standoff ¹ - gromet ¹ - box ¹ - float ¹ - moulding ¹ - flush ¹ - frame ¹ - masonite ¹ - lam1 ¹ - sebbox - lam2 ¹ - lam4c ¹ - drymount - kraft Mat Board ²: - none - mb01 - mb02 - mb03 - mb04 - mb05 - mb06 - mb07 - mb08 - mb09 - mb10 Plexi Glass ²: - plexiglass - plexinonglare - plexiglassprint Hanging ²: - none - wire - cleat - security |
additional (frame) |
Decorative Moulding ²: - 141-250 :: Black Coffee, Gold Top - 141-850 :: Black Coffee, Gold Top - 301-10 :: 301-90 Gold Picture Frame - 301-11 :: 301-11 Bronze Picture Frame - 301-21 :: 301-21 Espresso Floating Frame - 301-22 :: 301-22 White Floating Frame - 301-29 :: 301-29 Black Floating Frame - 303-11 :: 303-11 Espresso Floating Frame - 303-12 :: 303-12 Natural Wood Floating Frame - 303-19 :: 303-19 Black Floating Frame - 317-11 :: 317-11 Bronze Floating Frame - 317-21 :: 317-21 Espresso Floating Frame - 317-22 :: 317-22 White Floating Frame - 317-29 :: 317-29 Black Floating Frame - 317-30 :: 317-30 Gold Floating Frame - 317-70 :: 317-70 Floating Frame Gold - 317-73 :: 317-73 Silver Floating Frame - 340-21 :: 340-21 Espresso Floating Frame - 340-29 :: 340-29 Black Floating Frame - 344-22 :: Moulding 344-22 White - 346-21 :: Walnut - 346-22 :: Off White - 346-39 :: Black - 348-09 :: 348-09 Black Lacquer Picture Frame - 360-71 :: 360-71 Walnut Woodgrain Floating Frame - 360-72 :: 360-72 Off White Woodgrain Floating Frame - 360-78 :: 360-78 Grey Woodgrain Floating Frame - 360-79 :: 360-79 Dark Brown Woodgrain Floating Frame - 360-81 :: 360-81 Dark Walnut Woodgrain Floating Frame - 360-82 :: 360-82 Natural Woodgrain Floating Frame - 360-88 :: 360-88 Charcoal Woodgrain Floating Frame - 514-42 :: 514-42 Floating Frame - 514-48 :: 514-48 Floating Frame - 514-49 :: 514-49 Floating Frame - 514-71 :: 514-71 Floating Frame - 514-72 :: 514-72 Floating Frame - 514-81 :: 514-81 Wood Texture Floating Frame - 515-48 :: 515-48 Charcoal Floating Frame - 613-50 :: 613-50 Gold Floating Frame - 804-42 :: Floating Frame 1.5 Inch White - fl-514-40 :: Fl514-40 Gold Black Floating Frame - fl-804-42 :: Fl-804-42 White Floating Frame - fl-814-06 :: Fl-814-06 Bordeaux Floating Frame - fl-814-08 :: Fl-814-08 Gold Antique Floating Frame - fl-814-18 :: Fl-814-18 Walnut Floating Frame - fl-814-22 :: Fl-814-22 Truffle Floating Frame - fl-814-51 :: Fl-814-51 Pewter Floating Frame - fl-814-52 :: Fl-814-52 Charcoal Floating Frame - fl-814-61 :: Fl-814-61 Ebony Floating Frame - fl-814-66 :: Fl-814-66 Champagne Floating Frame - fl-814-67 :: Fl-814-67 Black Floating Frame - fl-814-711 :: Fl-814-711 Silver Floating Frame - fl-814-722 :: Fl-814-722 Gold Floating Frame - fl-816-908 :: Fl-816-908 Antique Floating Frame - fl-816-918 :: Fl-816-918 Walnut Floating Frame 2.75 Inch - fl-816-922 :: Fl-816-922 Truffle Floating Frame - fl-816-951 :: Fl-816-951 Pewter Floating Frame 2.75 Inch - fl-816-952 :: Fl-816-952 Coal Floating Frame - fl-816-966 :: Fl-816-966 Champagne Floating Frame - fl-816-967 :: Fl-816-967 Black Floating Frame Picture Frame ²: - 240-82 :: 240 Natural Wood Box Picture Frame - 241-21 :: 241-21 Espresso Picture Frame - 241-22 :: 241-22 White Picture Frame - 241-29 :: 241-29 Black Picture Frame - 2616-473 :: 2616-473 True Silver Large Frame Box - 329-22 :: 329-22 White Picture Frame - 329-29 :: 329-29 Black Picture Frame - 330-22 :: 330 White Box Picture Frame - 330-29 :: 330 Black Box Picture Frame - 331-22 :: 331-22 White Picture Frame - 331-29 :: 331-29 Black Picture Frame - 432-12 :: 432 Natural Wood Thin Picture Frame - 432-21 :: 432-21 Espresso Picture Frame - 432-22 :: 432 White Thin Picture Frame - 432-29 :: 432 Black Thin Picture Frame - 434-290 :: 434-290 Dark Brown Frame Box - 434-292 :: 434-292 Black With Silver Frame Box - 434-293 :: 434-293 Dark Brown Frame Box - 608-61 :: 608-61 Oak Woodgrain Thin Frame Box - 608-78 :: 608-78 Charcoal Thin Frame Box - 608-79 :: 608-79 Dark Brown Thin Frame Box - 608-81 :: 608-81 Beige Barnwood Thin Frame Box - 616-40 :: 616-40 Gold Large Frame Box - 616-41 :: 616-41 Espresso Large Frame Box - 616-42 :: 616-42 White Large Frame Box - 616-49 :: 616-49 Black Large Frame Box - 616-493 :: 616-493 Duotone Amber Large Frame Box - 724-12 :: 724-12 Natural Picture Frame - 724-19 :: 724-19 Black Picture Frame - 724-32 :: 724-32 White Picture Frame - 800-966 :: 800-966 Champagne Frame Box - 820-545 :: 820-545 Black Lipped Frame Box - 820-888 :: 820-888 Dark Brownframe Box - 832-711 :: 832-711 Silver Picture Frame - 832-722 :: 832-722 Gold Picture Frame - 832-733 :: 832-733 Red Wood Picture Frame - 306-11 :: 306-11 Bronze Floating Frame 0.75 - 306-22 :: 306-22 White Floating Frame 0.75 - 306-29 :: 306-29 Black Floating Frame 0.75 - 306-90 :: 306-90 Gold Floating Frame 0.75 - 365-11 :: 365-11 Espresso Floating Frame - 365-12 :: 365-12 Natural Floating Frame - 365-18 :: 365-18 Grey Floating Frame - 365-19 :: 365-19 Black Floating Frame - 365-31 :: 365-31 Walnut Floating Frame - 107-145 :: Antique Gold - 107-225 :: Gold & Black - 119-222 :: 119-222 Gold Lipped Picture Frame - 132-29 :: 132-29 Black Picture Frame - 132-31 :: 132-31 Espresso Picture Frame - 135-200 :: 135-200 Verdigris With Black Lined Picture Frame - 135-300 :: Walnut, Gold Lip - 139-034 :: Black Oxidized Gold, Gold Lip - 139-113 :: Crackle Silver - 139-114 :: Silver Oxidized Black - 139-139 :: Silver Oxidized Black - 139-264 :: Antique Salmon - 141-10 :: 141-10 Gold Picture Frame - 141-15 :: 141-15 Bronze Picture Frame - 141-21 :: 141-21 Espresso Picture Frame - 141-22 :: 141-22 White Picture Frame - 141-29 :: 141-29 Black Picture Frame - 145-21 :: 145-21 Espresso Picture Frame - 145-22 :: 145-22 White Picture Frame - 145-29 :: 145-29 Black Picture Frame - 156-150 :: 156-150 Black With Silver Lipped Picture Frame - 156-250 :: 156-250 Black With Gold Lipped Picture Frame - 156-48 :: 156-48 White Lipped Picture Frame - 156-950 :: Beige - 157-150 :: 157-150 Dark Brown Silver Lipped Picture Frame - 157-250 :: Black Gold Lip - 157-45 :: Black - 157-48 :: 157-48 White Lipped Picture Frame - 157-850 :: Expresso - 157-950 :: 157-950 Light Gold Lipped Frame - 165-21 :: 165-21 Light Walnut Picture Frame - 165-24 :: 165-24 Mahogamy Picture Frame - 165-25 :: 165-25 Walnut Picture Frame - 186-21 :: 186-21 Redwood With Black Picture Frame - 186-24 :: 186-24 Magogany With Black Picture Frame - 186-25 :: 186-25 Walnut With Black Picture Frame - 186-29 :: 186-29 Black Picture Frame - 2002-20 :: 2002-20 Light Gold Large Picture Frame - 2002-23 :: 2002-23 Satin Large Picture Frame - 2002-29 :: Distress Black - 293-24 :: Ruby And Silver - 293-29 :: 293-29 Dark Truffle With Silver Lipped Picture Frame - 294-24 :: Ruby And Silver - 294-29 :: 294-29 Dark Truffle With Silver Lipped Large Picture Frame - 297-12 :: 297-12 Natural Woodgrain Picture Frame - 297-19 :: 297-19 Black Woodgrain Picture Frame - 297-32 :: 297-32 White Woodgrain Picture Frame - 405-061 :: Black Chocolate - 405-062 :: Black - 405-273 :: Black Satin - 405-304 :: Smoked Bronze - 405-305 :: Smoked Copper - 405-306 :: Smoked Silver - 405-963 :: Champagne Stainless - 405-964 :: Metallic Copper - 405-966 :: Stainless Steel - 41-10 :: 41-10 Gold Picture Frame - 41-15 :: 41-15 Bronze Picture Frame - 41-21 :: 41-21 Espresso Picture Frame - 41-22 :: 41-22 White Picture Frame - 41-29 :: 41-29 Black Picture Frame - 412-050 :: Oxidized Champagne - 412-079 :: Black - 412-305 :: Dark Bronze - 412-306 :: Smoked Silver - 412-308 :: Smoked Gold - 416-061 :: Black Chocolate - 416-273 :: Black - 416-966 :: Silver - 423-21 :: Walnut - 423-22 :: 423-22 Off White Frame Box - 423-39 :: Black - 431-29 :: 431-29 Black Picture Frame - 435-09 :: 435-09 Black Lacquer Picture Frame - 518-511 :: Silver - 518-520 :: Champagne 518-520 - 518-550 :: Bronze - 518-561 :: Sterling - 519-511 :: 519-511 Azur With Lipped Large Picture Frame - 519-550 :: 519-550 Bronze With Lipped Large Picture Frame - 519-561 :: 519-561 Sterling With Lipped Large Picture Frame - 52-440 :: 52-400 Red Wood With Gold Picture Frame - 520-21 :: 520-21 Red Wood Picture Frame - 542-552 :: Anthracite, Gold Lip - 542-846 :: Mahogany & Black - 543-815 :: Olive Wood & Black - 595-62 :: 595-62 Light Brown Barnwood Large Picture Frame - 595-68 :: 595-68 Grey Barnwood Large Picture Frame - 595-72 :: 595-72 Oak Barwood Large Picture Frame - 595-78 :: 595-78 Brown Barnwood Large Picture Frame - 602-53 :: 602-53 Silver Black Lipped Picture Frame - 602-55 :: 602-55 Redwood Silver Lipped Picture Frame - 602-59 :: 602-59 Black Silver Lipped Picture Frame - 608-72 :: 608-72 White Woodgrain Thin Frame Box - 609-001 :: Natural - 609-045 :: Black Chocolate - 609-046 :: Mahogany - 609-048 :: White - 609-050 :: Ebony - 609-052 :: 609-052 Charcoal Large Picture Frame - 609-081 :: Mocassin - 609-082 :: Rosewood - 612-53 :: 612-53 Silver Black Lipped Large Picture Frame - 612-59 :: 612-59 Black Silver Lipped Large Picture Frame - 622-473 :: 622-473 True Silver Picture Frame - 622-68 :: 622-68 Grey Barnwood Picture Frame - 622-78 :: 622-78 Light Grey Barnwood Picture Frame - 629-102 :: 629-102 White Lacquer Picture Frame - 629-49 :: 629-49 Black Picture Frame - 629-50 :: 629-50 Antique Gold Picture Frame - 631-109 :: 631-109 Black Lacquer Picture Frame - 631-42 :: 631-42 White Picture Frame - 631-473 :: 631-473 Silver Picture Frame - 631-49 :: 631-49 Black Picture Frame - 631-50 :: 631-50 Gold Picture Frame - 631-58 :: 631-58 Charcoal Picture Frame - 631-63 :: 631-63 Warm Silver Picture Frame - 631-71 :: 631-71 Walnut Woodgrain Picture Frame - 631-81 :: 631-81 Dark Walnut Woodgrain Picture Frame - 631-82 :: 631-82 Natural Woodgrain Picture Frame - 631-88 :: 631-88 Charcoal Woodgrain Picture Frame - 631-91 :: 631-91 Light Walnut Woodgrain Picture Frame - 631-98 :: 631-98 Grey Woodgrain Picture Frame - 632-42 :: 632-42 White Picture Frame - 632-473 :: 632-473 Silver Picture Frame - 632-48 :: 632-48 Charcoal Picture Frame - 632-49 :: 632-49 Black Picture Frame - 632-55 :: 632-55 Bronze Picture Frame - 6323 :: 6323 Champagne Picture Frame - 701-403 :: 701-403 Grey Thin Picture Frame - 701-410 :: 701-410 Pink Thin Picture Frame - 701-415 :: 701-415 Red Think Picture Frame - 701-416 :: 701-046 Blue Think Picture Frame - 701-419 :: 701-419 Pink Thin Picture Frame - 701-421 :: Dark Brown - 701-851 :: 701-851 Champagne Picture Frame - 701-871 :: 701-871 Silver Thin Picture Frame - 701-948 :: 701-948 White Thin Picture Frame - 701-967 :: 701-967 Silver Thin Picture Frame - 701-blk :: 701-blk Black Thin Picture Frame - 702-001 :: 702-001 Oak Large Picture Frame - 702-011 :: 702-011 Silver Large Picture Frame - 702-014 :: 702-014 Grey Large Picture Frame - 702-045 :: 702-045 Black Large Picture Frame - 702-048 :: 702-048 Grain White Large Picture Frame - 702-050 :: 702-050 Expresso Picture Frame - 702-051 :: 702-051 Brown Large Picture Frame - 702-052 :: 702-052 Charcoal Large Picture Frame - 702-062 :: 702-062 Grain Black Large Picture Frame - 702-067 :: 702-067 Grey Brown Large Picture Frame - 702-081 :: 702-081 Teck Large Picture Frame - 702-082 :: 702-082 Pale Brown Picture Frame - 702-084 :: 702-084 Red Brown Large Picture Frame - 702-851 :: 702-851 Champagne Large Picture Frame - 702-948 :: 702-948 White Large Picture Frame - 702-967 :: 702-967 Stainless Large Picture Frame - 702-968 :: Bright White - 706-21 :: 706-21 Red Wood Pictureframe - 706-24 :: 706-24 Walnut Pictureframe - 707-21 :: 707-21 Redwood Black Deco Picture Frame - 707-24 :: 707-24 - 707-29 :: 707-29 Black Deco Frame - 725-29 :: 725-29 - 782-22 :: 782-22 White Picture Frame - 782-29 :: 782-29 Black Picture Frame - 783-22 :: 783-22 White Picture Frame - 783-29 :: 783-29 Black Picture Frame - 787-290 :: 787-290 Gold Picture Frame - 787-293 :: 787-293 Stainless Picture Frame - 787-393 :: 787-393 Silver Picture Frame - 800-967 :: 800-967 Black Frame Box - 832-745 :: 832-745 Black Picture Frame - 868-745 :: 868-745 Black Lipped Picture Frame - 868-755 :: 868-755 Black With Gold Lipped Picture Frame - 868-756 :: 868-756 Expresso With Gold Lipped Picture Frame - 868-767 :: Expresso With Gold Lip - 884-638 :: 884-638 Scratched Platinium Large Picture Frame - 886-611 :: 886-611 Silver Large Picture Frame - 886-688 :: 886-688 Dark Brown Large Picture Frame - 886-690 :: 886-690 Red Wood Large Picture Frame - 886-740 :: 886-740 Redwood Large Picture Frame - 892-1040 :: 892-1040 Gold Lipped Picture Frame - 892-755 :: 892-755 Gold Lipped With Black Picture Frame - 892-756 :: 892-756 Gold Lipped With Espresso Picture Frame - 892-967 :: 892-967 Black Lipped Picture Frame - 8947 :: 8947 Gold Picture Frame - 933-001 :: Natural - 933-045 :: Satin Black - 933-048 :: White - 933-050 :: 933-050 Ebony Thin Frame Box - 933-052 :: 933-052 Charcoal Thin Frame Box - 933-081 :: 933-081 Light Walnut Thin Frame Box - 933-086 :: 933-086 Rosewood Thin Frame Box |
1 Requires a specific MATERIAL
2 Requires a specific OPTION