List Pending Orders
Uri: https://test-api.finerworks.com/v3/list_pending_orders
Method: POST

Returns a list of orders being held in a pending status before being submitted.


Body

NameDescriptionTypeAdditional information
ids

List of ids associated with pending orders

array (number)

Required

account_key

Optional - This assigns orders by account_key. Note, this will only be accepted for accounts with permission to utilize this parameter, otherwise it will be ignored and virtual inventory will be updated based upon the user's api credentials. Leave as null if not authorized to use this parameter.

text

None.

Example JSON Body

application/json, text/json

{
  "ids": [
    1,
    2
  ],
  "account_key": "sample string 1"
}

Sample Code Library


                        
curl --location --request sample_method 'https://test-api.finerworks.comsample_endpoint' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "ids": [
    1,
    2
  ],
  "account_key": "sample string 1"
}'
                            
                        


require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://test-api.finerworks.comsample_endpoint');
$request->setMethod(HTTP_Request2::METHOD_sample_method);
$request->setConfig(array(
'follow_redirects' => TRUE
));
$request->setHeader(array(
'Content-Type' => 'application/json',
'web_api_key' => 'my-web-api-key-goes-here',
'app_key' => 'my-app-key-goes-here'
));
$request->setBody('{
  'ids': [
    1,
    2
  ],
  'account_key': 'sample string 1'
}');
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}

                        


var client = new RestClient("https://test-api.finerworks.comsample_endpoint");
client.Timeout = -1;
var request = new RestRequest(Method.sample_method);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("web_api_key", "my-web-api-key-goes-here");
request.AddHeader("app_key", "my-app-key-goes-here");
request.AddParameter("application/json", "{
  'ids': [
    1,
    2
  ],
  'account_key': 'sample string 1'
},  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

                        


var settings = {
"url": "https://test-api.finerworks.comsample_endpoint",
"method": "sample_method",
"timeout": 0,
"headers": {
"Content-Type": "application/json",
"web_api_key": "my-web-api-key-goes-here",
"app_key": "my-app-key-goes-here"
},
"data": JSON.stringify({
  'ids': [
    1,
    2
  ],
  'account_key': 'sample string 1'
}),
};

$.ajax(settings).done(function (response) {
console.log(response);
});

                        

                        
var https = require('follow-redirects').https;
var fs = require('fs');

var options = {
'method': 'sample_method',
'hostname': 'v2.api.finerworks.com',
'path': 'sample_endpoint',
'headers': {
'Content-Type': 'application/json',
'web_api_key': 'my-web-api-key-goes-here',
'app_key': 'my-app-key-goes-here'
},
'maxRedirects': 20
};

var req = https.request(options, function (res) {
var chunks = [];

res.on("data", function (chunk) {
chunks.push(chunk);
});

res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});

res.on("error", function (error) {
console.error(error);
});
});

var postData = JSON.stringify({
  "ids": [
    1,
    2
  ],
  "account_key": "sample string 1"
});

req.write(postData);

req.end();
                            
                        

                        
    require "uri"
    require "net/http"

    url = URI("https://test-api.finerworks.comsample_endpoint")

    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true

    request = Net::HTTP::sample_method.new(url)
    request["Content-Type"] = "application/json"
    request["web_api_key"] = "my-web-api-key-goes-here"
    request["app_key"] = "my-app-key-goes-here"
    request.body = "{
  'ids': [
    1,
    2
  ],
  'account_key': 'sample string 1'
}"

    response = https.request(request)
    puts response.read_body


                        

NameDescriptionTypeAdditional information
orders

array (order_details)

None.

status

response_status

None.

Example JSON Response

application/json, text/json

{
  "orders": [
    {
      "order_po": "sample string 1",
      "order_key": "54371b79-7e96-42da-8e52-b75ff6bef9e2",
      "recipient": {
        "first_name": "sample string 1",
        "last_name": "sample string 2",
        "company_name": "sample string 3",
        "address_1": "sample string 4",
        "address_2": "sample string 5",
        "address_3": "sample string 6",
        "city": "sample string 7",
        "state_code": "sample string 8",
        "province": "sample string 9",
        "zip_postal_code": "sample string 10",
        "country_code": "sample string 11",
        "phone": "sample string 12",
        "email": "sample string 13",
        "address_order_po": "sample string 14"
      },
      "order_items": [
        {
          "product_order_po": "sample string 1",
          "product_qty": 2,
          "product_sku": "sample string 3",
          "product_image": {
            "pixel_width": 1,
            "pixel_height": 2,
            "product_url_file": "sample string 3",
            "product_url_thumbnail": "sample string 4",
            "library_file": {
              "id": 1,
              "guid": "e4bd76f0-3133-47dd-a972-9e9d14aa82f2",
              "title": "sample string 3",
              "description": "sample string 4",
              "file_name": "sample string 5",
              "file_size": 6,
              "thumbnail_file_name": "sample string 7",
              "preview_file_name": "sample string 8",
              "hires_file_name": "sample string 9",
              "public_thumbnail_uri": "sample string 10",
              "public_preview_uri": "sample string 11",
              "personal_gallery_title": "sample string 12",
              "members_gallery_category": "sample string 13",
              "private_hires_uri": "sample string 14",
              "pix_w": 15,
              "pix_h": 16,
              "date_added": "2025-10-14T08:49:44.7178856-05:00",
              "date_expires": "2025-10-14T08:49:44.7178856-05:00",
              "active": true,
              "products": [
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                },
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                }
              ]
            }
          },
          "product_title": "sample string 5",
          "template": {
            "id": "4b44ba2a-c088-44b6-9f9c-5670180e4f11",
            "thumbnail_url": "sample string 2",
            "product_code": "sample string 3"
          },
          "product_guid": "e3419de5-f2ff-4282-aca0-2eea7c9957d5",
          "custom_data_1": "sample string 7",
          "custom_data_2": "sample string 8",
          "custom_data_3": "sample string 9"
        },
        {
          "product_order_po": "sample string 1",
          "product_qty": 2,
          "product_sku": "sample string 3",
          "product_image": {
            "pixel_width": 1,
            "pixel_height": 2,
            "product_url_file": "sample string 3",
            "product_url_thumbnail": "sample string 4",
            "library_file": {
              "id": 1,
              "guid": "e4bd76f0-3133-47dd-a972-9e9d14aa82f2",
              "title": "sample string 3",
              "description": "sample string 4",
              "file_name": "sample string 5",
              "file_size": 6,
              "thumbnail_file_name": "sample string 7",
              "preview_file_name": "sample string 8",
              "hires_file_name": "sample string 9",
              "public_thumbnail_uri": "sample string 10",
              "public_preview_uri": "sample string 11",
              "personal_gallery_title": "sample string 12",
              "members_gallery_category": "sample string 13",
              "private_hires_uri": "sample string 14",
              "pix_w": 15,
              "pix_h": 16,
              "date_added": "2025-10-14T08:49:44.7178856-05:00",
              "date_expires": "2025-10-14T08:49:44.7178856-05:00",
              "active": true,
              "products": [
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                },
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                }
              ]
            }
          },
          "product_title": "sample string 5",
          "template": {
            "id": "4b44ba2a-c088-44b6-9f9c-5670180e4f11",
            "thumbnail_url": "sample string 2",
            "product_code": "sample string 3"
          },
          "product_guid": "e3419de5-f2ff-4282-aca0-2eea7c9957d5",
          "custom_data_1": "sample string 7",
          "custom_data_2": "sample string 8",
          "custom_data_3": "sample string 9"
        }
      ],
      "shipping_code": "sample string 2",
      "ship_by_date": "2025-10-14T08:49:44.7178856-05:00",
      "customs_tax_info": {
        "tax_id": "sample string 1",
        "tax_type": 0
      },
      "gift_message": "sample string 3",
      "test_mode": true,
      "webhook_order_status_url": "sample string 5",
      "document_url": "sample string 6",
      "acct_number_ups": "sample string 7",
      "acct_number_fedex": "sample string 8",
      "custom_data_1": "sample string 9",
      "custom_data_2": "sample string 10",
      "custom_data_3": "sample string 11",
      "source": "sample string 12"
    },
    {
      "order_po": "sample string 1",
      "order_key": "54371b79-7e96-42da-8e52-b75ff6bef9e2",
      "recipient": {
        "first_name": "sample string 1",
        "last_name": "sample string 2",
        "company_name": "sample string 3",
        "address_1": "sample string 4",
        "address_2": "sample string 5",
        "address_3": "sample string 6",
        "city": "sample string 7",
        "state_code": "sample string 8",
        "province": "sample string 9",
        "zip_postal_code": "sample string 10",
        "country_code": "sample string 11",
        "phone": "sample string 12",
        "email": "sample string 13",
        "address_order_po": "sample string 14"
      },
      "order_items": [
        {
          "product_order_po": "sample string 1",
          "product_qty": 2,
          "product_sku": "sample string 3",
          "product_image": {
            "pixel_width": 1,
            "pixel_height": 2,
            "product_url_file": "sample string 3",
            "product_url_thumbnail": "sample string 4",
            "library_file": {
              "id": 1,
              "guid": "e4bd76f0-3133-47dd-a972-9e9d14aa82f2",
              "title": "sample string 3",
              "description": "sample string 4",
              "file_name": "sample string 5",
              "file_size": 6,
              "thumbnail_file_name": "sample string 7",
              "preview_file_name": "sample string 8",
              "hires_file_name": "sample string 9",
              "public_thumbnail_uri": "sample string 10",
              "public_preview_uri": "sample string 11",
              "personal_gallery_title": "sample string 12",
              "members_gallery_category": "sample string 13",
              "private_hires_uri": "sample string 14",
              "pix_w": 15,
              "pix_h": 16,
              "date_added": "2025-10-14T08:49:44.7178856-05:00",
              "date_expires": "2025-10-14T08:49:44.7178856-05:00",
              "active": true,
              "products": [
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                },
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                }
              ]
            }
          },
          "product_title": "sample string 5",
          "template": {
            "id": "4b44ba2a-c088-44b6-9f9c-5670180e4f11",
            "thumbnail_url": "sample string 2",
            "product_code": "sample string 3"
          },
          "product_guid": "e3419de5-f2ff-4282-aca0-2eea7c9957d5",
          "custom_data_1": "sample string 7",
          "custom_data_2": "sample string 8",
          "custom_data_3": "sample string 9"
        },
        {
          "product_order_po": "sample string 1",
          "product_qty": 2,
          "product_sku": "sample string 3",
          "product_image": {
            "pixel_width": 1,
            "pixel_height": 2,
            "product_url_file": "sample string 3",
            "product_url_thumbnail": "sample string 4",
            "library_file": {
              "id": 1,
              "guid": "e4bd76f0-3133-47dd-a972-9e9d14aa82f2",
              "title": "sample string 3",
              "description": "sample string 4",
              "file_name": "sample string 5",
              "file_size": 6,
              "thumbnail_file_name": "sample string 7",
              "preview_file_name": "sample string 8",
              "hires_file_name": "sample string 9",
              "public_thumbnail_uri": "sample string 10",
              "public_preview_uri": "sample string 11",
              "personal_gallery_title": "sample string 12",
              "members_gallery_category": "sample string 13",
              "private_hires_uri": "sample string 14",
              "pix_w": 15,
              "pix_h": 16,
              "date_added": "2025-10-14T08:49:44.7178856-05:00",
              "date_expires": "2025-10-14T08:49:44.7178856-05:00",
              "active": true,
              "products": [
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                },
                {
                  "monetary_format": "sample string 1",
                  "quantity": 2,
                  "quantity_in_stock": 3,
                  "sku": "sample string 4",
                  "product_code": "sample string 5",
                  "price_details": {
                    "product_qty": 1,
                    "product_sku": "sample string 2",
                    "product_code": "sample string 3",
                    "product_price": 4.1,
                    "add_frame_price": 5.1,
                    "add_mat_1_price": 6.1,
                    "add_mat_2_price": 7.1,
                    "add_glazing_price": 8.1,
                    "add_color_correct_price": 9.1,
                    "total_price": 10.1,
                    "info": "sample string 11",
                    "debug": {}
                  },
                  "per_item_price": 6.0,
                  "total_price": 7.0,
                  "asking_price": 8.0,
                  "name": "sample string 9",
                  "description_short": "sample string 10",
                  "description_long": "sample string 11",
                  "labels": [
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    },
                    {
                      "key": "sample string 1",
                      "value": "sample string 2",
                      "priority": 3
                    }
                  ],
                  "image_url_1": "sample string 12",
                  "image_url_2": "sample string 13",
                  "image_url_3": "sample string 14",
                  "image_url_4": "sample string 15",
                  "image_url_5": "sample string 16",
                  "image_guid": "ba29b7a6-40c1-4943-8fa5-c2c4fcf0feb1",
                  "product_size": {
                    "width": 1.0,
                    "height": 2.0,
                    "depth": 3.0,
                    "ounces": 4.0,
                    "cubic_volume": 5.0,
                    "is_rigid": true
                  },
                  "third_party_integrations": {
                    "etsy_product_id": 1,
                    "shopify_product_id": 2,
                    "shopify_variant_id": 3,
                    "squarespace_product_id": "sample string 4",
                    "squarespace_variant_id": "sample string 5",
                    "wix_inventory_id": "sample string 6",
                    "wix_product_id": "sample string 7",
                    "wix_variant_id": "sample string 8",
                    "woocommerce_product_id": 9,
                    "woocommerce_variant_id": 10
                  },
                  "framing_options": {
                    "collection_ids": [
                      1,
                      2
                    ],
                    "allow_frames": true,
                    "allow_matting": true,
                    "allow_glazing": true,
                    "frame_required": true,
                    "allow_float_matting": true,
                    "require_float_matting": true
                  },
                  "product_guid": "beb3f117-d547-4228-9317-e13355a51ea5",
                  "debug": {}
                }
              ]
            }
          },
          "product_title": "sample string 5",
          "template": {
            "id": "4b44ba2a-c088-44b6-9f9c-5670180e4f11",
            "thumbnail_url": "sample string 2",
            "product_code": "sample string 3"
          },
          "product_guid": "e3419de5-f2ff-4282-aca0-2eea7c9957d5",
          "custom_data_1": "sample string 7",
          "custom_data_2": "sample string 8",
          "custom_data_3": "sample string 9"
        }
      ],
      "shipping_code": "sample string 2",
      "ship_by_date": "2025-10-14T08:49:44.7178856-05:00",
      "customs_tax_info": {
        "tax_id": "sample string 1",
        "tax_type": 0
      },
      "gift_message": "sample string 3",
      "test_mode": true,
      "webhook_order_status_url": "sample string 5",
      "document_url": "sample string 6",
      "acct_number_ups": "sample string 7",
      "acct_number_fedex": "sample string 8",
      "custom_data_1": "sample string 9",
      "custom_data_2": "sample string 10",
      "custom_data_3": "sample string 11",
      "source": "sample string 12"
    }
  ],
  "status": {
    "success": true,
    "status_code": 100,
    "message": "sample string 2",
    "debug": {},
    "reference_id": "sample string 4"
  }
}