{"info":{"_postman_id":"7791e992-edf5-4cbd-8512-7acc4482befd","name":"FinditParts Reseller API 2.0.1","description":"<html><head></head><body><p>The FinditParts Reseller API allows you to search parts inventory, create and integrate FinditParts accounts, quote shipping rates for orders, and place orders on behalf of linked FinditParts users.</p>\n<p>Creating FinditParts users require a name, email, shipping address, and payment method on file. The process for creating accounts occurs on a finditparts.com page but can be embedded in an iframe or the user can be redirected and redirected back upon completion.</p>\n<p>Once a FinditParts user is setup, API reseller clients can initiate new orders on behalf of FinditParts users that have been created by, or linked to, a API reseller client via a \"Customer Reference\" (see <code>createResellerCustomerSession</code> method for more information).</p>\n<p>Alternatively, partner applications can use API key based authentication to automate quoting and purchasing in a white-label fashion within their own UI or internal applications.</p>\n<p>Custom Postman API collections are available for specific use cases and can be provided upon request.</p>\n<h2 id=\"jwt-basics\">JWT Basics</h2>\n<p>Use the <code>Authorization</code> header in the format <code>Bearer JWT.TOKEN.HERE</code>.</p>\n<p>Requirements for generating each JWT:</p>\n<ul>\n<li>Each request should include a unique <a href=\"https://jwt.io/introduction/\">JWT Token</a> signed with your Reseller Client Secret (provided by FinditParts) using the <code>HS256</code> algorithm.</li>\n<li>Each JWT must include an expiration header <code>exp</code> which should be as short as reasonable to prevent requests from being replayed.</li>\n<li>Each JWT must include an issuer header <code>iss</code> which should be set to your Reseller Client ID (provided by FinditParts).</li>\n</ul>\n<p>A generic signed JWT with the above is sufficient to authorize a request to the productSearch API or the getResellerCustomerSession APIs (not on behalf of a specific customer) but the createResellerCustomerSession and shippingMethods endpoints have some additional requirements as noted in the documentation for each method (most notably needing to be signed with the Customer Reference subject which designates the request on behalf of a specific customer).</p>\n<p>Example Generic JWT payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre><p>Generate a new short-lived token for each request where each token is used in the Authorization HTTP header in the format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer JWT.TOKEN.HERE\n</code></pre><h2 id=\"create-reseller-customer-session-jwts\">Create Reseller Customer Session JWTs</h2>\n<p>In addition, when generating JWTs for the purpose of creating new sessions on behalf of customers, additional JWT headers and custom payload must be provided. Please see createResellerCustomerSession for documentation.</p>\n<h2 id=\"customer-reference-jwts\">Customer Reference JWTs</h2>\n<p>Some endpoints such as Product Search and Shipping Methods require a customer reference <code>sub</code> in the JWT to act on behalf of a specific customer. Please see USER_SETUP documentation for initial customer reference setup and specific endpoint for documentation on JWT structure.</p>\n<h1 id=\"api-key-based-authentication\">API key based authentication</h1>\n<p>Client side apps that cannot use a JWT secret, for example mobile apps or single-buyer partner applications, can use API key authentication instead.</p>\n<p>Reseller clients are issued an API key in the format <code>api-XYZ123</code> next to JWT credentials.</p>\n<p>This key can be used in the <code>Authentication</code> header in the format <code>Bearer api-XYZ123</code> to access non-user specific endpoints such as product search, new session, and create user.</p>\n<p>For user specific API calls such as user specific pricing in product search, creating orders, etc, API key clients must first exchange a users credentials for a user specific JWT token by using new sessions API call (this call still requires your API key).</p>\n<p>A user specific JWT can be used in the same <code>Authentication</code> header in the same format <code>Bearer USER.JWT.TOKEN</code> to access user specific endpoints.</p>\n<h1 id=\"iframe\">iFrame</h1>\n<p>When embedding the redirect_url in an iframe, you can receive javascript <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage\">postMessage</a> events for when:</p>\n<ul>\n<li>The iFrame has loaded with the payload <code>{ pageLoaded: true }</code></li>\n<li>When the user has completed a session of NEW_ORDER or USER_SETUP. Payload described in the relevant secion.</li>\n</ul>\n<h1 id=\"errors\">Errors</h1>\n<p>Error responses from the API follow the format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  errno: 99,\n  message: \"...\"\n}\n</code></pre><ul>\n<li>0: No error</li>\n<li>1: No part number provided</li>\n<li>2: Invalid address provided</li>\n<li>3: Product or variant requested is unavailable for sale</li>\n<li>4: Invalid order. Line items or the variant selected may not meet requirements.</li>\n<li>5: Order is not cancelable.</li>\n<li>6: Invalid credentials</li>\n<li>7: Invalid user</li>\n<li>99: Unknown error</li>\n<li>404: Not Found</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API key based authentication","slug":"api-key-based-authentication"},{"content":"iFrame","slug":"iframe"},{"content":"Errors","slug":"errors"}],"owner":"12847304","collectionId":"7791e992-edf5-4cbd-8512-7acc4482befd","publishedId":"2sA3XY6dfM","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"d76127"},"publishDate":"2024-06-24T17:47:45.000Z"},"item":[{"name":"products","item":[{"name":"{product_id}","item":[{"name":"Product Details","id":"c1d008f4-46b0-4f18-b5ea-1b5a06efa034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/products/:product_id?include_pies_data=<boolean>","description":"<p>Returns the Product Details</p>\n<p>Requires a generic JWT in the Authorization header.</p>\n<p>Use a customer referenced JWT to return account specific pricing or a Generic JWT token (no customer reference) to return list price.</p>\n","urlObject":{"path":["products",":product_id"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>Whether to include PIES data</p>\n","type":"text/plain"},"key":"include_pies_data","value":"<boolean>"}],"variable":[{"id":"285d24c6-461f-4a2a-911d-c8537753f8f7","description":{"content":"<p>(Required) FinditParts Product ID (numerical)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"product_id"}]}},"response":[{"id":"ad7dfe7f-a8c4-4f5d-b685-d766e68ca297","name":"Product Details Response: Details for a given Product","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/:product_id?include_pies_data=<boolean>","host":["https://finditparts.com/api/v1"],"path":["products",":product_id"],"query":[{"description":"Whether to include PIES data","key":"include_pies_data","value":"<boolean>"}],"variable":[{"key":"product_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"product\": {\n    \"id\": \"<integer>\",\n    \"manufacturer\": \"<string>\",\n    \"part_number\": \"<string>\",\n    \"short_description\": \"<string>\",\n    \"long_description\": \"<string>\",\n    \"sellable\": \"<boolean>\",\n    \"product_url\": \"<string>\",\n    \"product_images\": [\n      {\n        \"product\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"large\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"small\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"medium\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        }\n      },\n      {\n        \"product\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"large\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"small\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        },\n        \"medium\": {\n          \"jpeg\": \"<string>\",\n          \"webp\": \"<string>\"\n        }\n      }\n    ],\n    \"condition\": \"<string>\",\n    \"breadcrumb_ancestors\": {\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\",\n      \"permalink\": \"<string>\",\n      \"is_hidden\": \"<boolean>\"\n    },\n    \"current_variant\": {\n      \"variant_id\": \"<integer>\",\n      \"price\": \"<string>\",\n      \"quantity\": \"<integer>\",\n      \"pack_quantity\": \"<integer>\",\n      \"minimum\": \"<integer>\",\n      \"verified\": \"<boolean>\",\n      \"location\": \"<string>\",\n      \"timezone\": \"<string>\",\n      \"cutoff\": \"<dateTime>\",\n      \"past_cutoff\": \"<boolean>\",\n      \"core_price\": \"<string>\",\n      \"estimated_business_days_to_ship\": \"<integer>\",\n      \"estimated_ship_date\": \"<dateTime>\",\n      \"estimated_days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date_ground\": \"<dateTime>\",\n      \"account_price\": \"<string>\",\n      \"minimum_order\": \"<string>\",\n      \"minimum_order_fee\": \"<string>\"\n    },\n    \"preferred_variant_id\": \"<integer>\",\n    \"variants\": [\n      {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      }\n    ],\n    \"recommendations_url\": \"<string>\",\n    \"product_review_count\": \"<integer>\",\n    \"product_review_rating\": \"<float>\",\n    \"manufacturer_image\": \"<string>\",\n    \"msrp\": \"<float>\",\n    \"purchase_notes\": [\n      {\n        \"type\": \"SPECIAL_ORDER\",\n        \"html_message\": \"<string>\"\n      },\n      {\n        \"type\": \"SHIPPING_CUTOFF\",\n        \"html_message\": \"<string>\"\n      }\n    ],\n    \"product_reviews\": [\n      {\n        \"title\": \"<string>\",\n        \"rating\": \"<integer>\",\n        \"summary\": \"<string>\"\n      },\n      {\n        \"title\": \"<string>\",\n        \"rating\": \"<integer>\",\n        \"summary\": \"<string>\"\n      }\n    ],\n    \"pies_data\": {\n      \"descriptions\": [\n        {\n          \"title\": \"<string>\",\n          \"description_code\": \"<string>\",\n          \"value\": \"<string>\",\n          \"language_code\": \"<string>\",\n          \"sequence\": \"<integer>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"description_code\": \"<string>\",\n          \"value\": \"<string>\",\n          \"language_code\": \"<string>\",\n          \"sequence\": \"<integer>\"\n        }\n      ],\n      \"part_interchanges\": [\n        {\n          \"brand_label\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"brand_aaiaid\": \"<string>\"\n        },\n        {\n          \"brand_label\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"brand_aaiaid\": \"<string>\"\n        }\n      ],\n      \"product_attributes\": [\n        {\n          \"name\": \"<string>\",\n          \"value\": \"<string>\"\n        },\n        {\n          \"name\": \"<string>\",\n          \"value\": \"<string>\"\n        }\n      ],\n      \"extended_product_informations\": [\n        {\n          \"description\": \"<string>\",\n          \"value\": \"<string>\",\n          \"expi_code\": \"<string>\",\n          \"language_code\": \"<string>\"\n        },\n        {\n          \"description\": \"<string>\",\n          \"value\": \"<string>\",\n          \"expi_code\": \"<string>\",\n          \"language_code\": \"<string>\"\n        }\n      ]\n    }\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"eb79133a-9e68-4b41-998a-28e7bbe5a34b","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/:product_id?include_pies_data=<boolean>","host":["https://finditparts.com/api/v1"],"path":["products",":product_id"],"query":[{"description":"Whether to include PIES data","key":"include_pies_data","value":"<boolean>"}],"variable":[{"key":"product_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c1d008f4-46b0-4f18-b5ea-1b5a06efa034"}],"id":"818537be-8391-4274-9bae-180bc3d19a86","_postman_id":"818537be-8391-4274-9bae-180bc3d19a86","description":""},{"name":"{product_ids}","item":[{"name":"multi","item":[{"name":"Product Details Multi","id":"6fb96c2c-e65a-4be1-bbd8-404a4b55e333","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/products/:product_ids/multi","description":"<p>Returns the Product Details for each comma separated ID.</p>\n<p>Requires a generic JWT in the Authorization header.</p>\n<p>Use a customer referenced JWT to return account specific pricing or a Generic JWT token (no customer reference) to return list price.</p>\n","urlObject":{"path":["products",":product_ids","multi"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"6abe11fe-a53e-4689-bdd5-a11170ba414d","description":{"content":"<p>(Required) FinditParts Product IDs comma delimited (no spaces)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"product_ids"}]}},"response":[{"id":"243f62f6-a306-44ce-bafe-cecb9ad80dd8","name":"Product Details Multi Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/:product_ids/multi","host":["https://finditparts.com/api/v1"],"path":["products",":product_ids","multi"],"variable":[{"key":"product_ids"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"products\": [\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"SPECIAL_ORDER\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"RETURNS\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"NA_CA\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"SHIPPING_PROMISE\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"11831068-63bd-4153-94c8-4c0c698b9242","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/:product_ids/multi","host":["https://finditparts.com/api/v1"],"path":["products",":product_ids","multi"],"variable":[{"key":"product_ids"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6fb96c2c-e65a-4be1-bbd8-404a4b55e333"}],"id":"146ac33b-dadc-4293-bd21-23df7bcfd0a9","_postman_id":"146ac33b-dadc-4293-bd21-23df7bcfd0a9","description":""}],"id":"24e743d7-5cb0-43c8-b210-b6c59380989c","_postman_id":"24e743d7-5cb0-43c8-b210-b6c59380989c","description":""},{"name":"lookup","item":[{"name":"Lookup Product by Part Number","id":"ade3440a-9478-4e69-88bb-036013df2378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/products/lookup?part_number=<string>","description":"<p>Returns the Product Details for each Product that exactly matches the part number provided. Results are split by part number exact matches and cross reference exact matches.</p>\n<p>Requires a generic JWT in the Authorization header.</p>\n<p>Use a customer referenced JWT to return account specific pricing or a Generic JWT token (no customer reference) to return list price.</p>\n","urlObject":{"path":["products","lookup"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>(Required) Part number</p>\n","type":"text/plain"},"key":"part_number","value":"<string>"}],"variable":[]}},"response":[{"id":"d8b1558a-16bf-4753-bdb0-daa9fdde2e06","name":"Product Lookup Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/lookup?part_number=<string>","host":["https://finditparts.com/api/v1"],"path":["products","lookup"],"query":[{"description":"(Required) Part number","key":"part_number","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"part_number_matches\": [\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"SHIPPING_MESSAGE\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"SHIPPING_MESSAGE\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"SHIPPING_PROMISE\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"RETURNS\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"cross_reference_matches\": [\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"SHIPPING_MESSAGE\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"NA_CA\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<integer>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"long_description\": \"<string>\",\n      \"sellable\": \"<boolean>\",\n      \"product_url\": \"<string>\",\n      \"product_images\": [\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        },\n        {\n          \"product\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"large\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"small\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          },\n          \"medium\": {\n            \"jpeg\": \"<string>\",\n            \"webp\": \"<string>\"\n          }\n        }\n      ],\n      \"condition\": \"<string>\",\n      \"breadcrumb_ancestors\": {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"permalink\": \"<string>\",\n        \"is_hidden\": \"<boolean>\"\n      },\n      \"current_variant\": {\n        \"variant_id\": \"<integer>\",\n        \"price\": \"<string>\",\n        \"quantity\": \"<integer>\",\n        \"pack_quantity\": \"<integer>\",\n        \"minimum\": \"<integer>\",\n        \"verified\": \"<boolean>\",\n        \"location\": \"<string>\",\n        \"timezone\": \"<string>\",\n        \"cutoff\": \"<dateTime>\",\n        \"past_cutoff\": \"<boolean>\",\n        \"core_price\": \"<string>\",\n        \"estimated_business_days_to_ship\": \"<integer>\",\n        \"estimated_ship_date\": \"<dateTime>\",\n        \"estimated_days_to_deliver\": \"<integer>\",\n        \"estimated_delivery_date_ground\": \"<dateTime>\",\n        \"account_price\": \"<string>\",\n        \"minimum_order\": \"<string>\",\n        \"minimum_order_fee\": \"<string>\"\n      },\n      \"preferred_variant_id\": \"<integer>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"recommendations_url\": \"<string>\",\n      \"product_review_count\": \"<integer>\",\n      \"product_review_rating\": \"<float>\",\n      \"manufacturer_image\": \"<string>\",\n      \"msrp\": \"<float>\",\n      \"purchase_notes\": [\n        {\n          \"type\": \"NA_CA\",\n          \"html_message\": \"<string>\"\n        },\n        {\n          \"type\": \"NA_CA\",\n          \"html_message\": \"<string>\"\n        }\n      ],\n      \"product_reviews\": [\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"rating\": \"<integer>\",\n          \"summary\": \"<string>\"\n        }\n      ],\n      \"pies_data\": {\n        \"descriptions\": [\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"description_code\": \"<string>\",\n            \"value\": \"<string>\",\n            \"language_code\": \"<string>\",\n            \"sequence\": \"<integer>\"\n          }\n        ],\n        \"part_interchanges\": [\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          },\n          {\n            \"brand_label\": \"<string>\",\n            \"part_number\": \"<string>\",\n            \"brand_aaiaid\": \"<string>\"\n          }\n        ],\n        \"product_attributes\": [\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"extended_product_informations\": [\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          },\n          {\n            \"description\": \"<string>\",\n            \"value\": \"<string>\",\n            \"expi_code\": \"<string>\",\n            \"language_code\": \"<string>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"77d5f256-f712-420c-bae0-c1cb4a791c27","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products/lookup?part_number=<string>","host":["https://finditparts.com/api/v1"],"path":["products","lookup"],"query":[{"description":"(Required) Part number","key":"part_number","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ade3440a-9478-4e69-88bb-036013df2378"}],"id":"cc7e7473-4f45-4c7f-bd02-4ffcc4d71fa2","_postman_id":"cc7e7473-4f45-4c7f-bd02-4ffcc4d71fa2","description":""},{"name":"Product Search","id":"22039613-dd69-438d-9227-91d2eac17c77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/products?part_number=<string>&query=<string>&order=manufacturer_to_a&m=<string>&strict=<boolean>&ioos=<boolean>&tags=Top Seller&pf=<float>&pt=<float>&page=<integer>&per=<integer>&pc=<string>&psc=<string>&ppt=<string>&c_d1=<string>&c_d2=<string>&c_d3=<string>&attrs=<string>&aggs=<boolean>&x_core=<boolean>&ids=<string>&ids=<string>&use_v3_search=<boolean>","description":"<p>Returns a list of products matching part number provided.</p>\n<p>One of <code>part_number</code> or <code>query</code> parameter is required.</p>\n<p>Requires a JWT in the Authorization header with intent 'PRODUCT_SEARCH' and on behalf of a 'Customer Reference' (See Workflow section in /reseller_customer_sessions endpoint).</p>\n<p>Use a customer referenced JWT with intent <code>PRODUCT_SEARCH</code> to return account specific pricing or a Generic JWT token (no customer reference) to return list price.</p>\n<p>Toggle between <code>v3</code> and <code>v2</code> search with <code>use_v3_search=true</code></p>\n<h2 id=\"jwt-payload-for-product-search\">JWT payload for product search</h2>\n<p>Example JWT payload (with customer reference <code>sub</code> to return <code>account_price</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  sub: \"CUSTOMER_123\",\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n  data: {\n    intent: \"PRODUCT_SEARCH\",\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre><p>Example generic JWT payload (no customer reference <code>sub</code> to return generic list price of products):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre>","urlObject":{"path":["products"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>Exact part number to match</p>\n","type":"text/plain"},"key":"part_number","value":"<string>"},{"description":{"content":"<p>General part search query</p>\n","type":"text/plain"},"key":"query","value":"<string>"},{"description":{"content":"<p>Result ordering (default is best match/most relevant \"_score\")</p>\n","type":"text/plain"},"key":"order","value":"manufacturer_to_a"},{"description":{"content":"<p>Manufacturer name filter (exact match, uppercase, example \"HALDEX\")</p>\n","type":"text/plain"},"key":"m","value":"<string>"},{"description":{"content":"<p>Enforce stricter querying (exact match part numbers only vs including partial matches and using 'AND' operators vs 'OR' for keywords)</p>\n","type":"text/plain"},"key":"strict","value":"<boolean>"},{"description":{"content":"<p>Include out of stock items in results (v3 only)</p>\n","type":"text/plain"},"key":"ioos","value":"<boolean>"},{"description":{"content":"<p>Product tags (v3 only)</p>\n","type":"text/plain"},"key":"tags","value":"Top Seller"},{"description":{"content":"<p>Price from (v3 only)</p>\n","type":"text/plain"},"key":"pf","value":"<float>"},{"description":{"content":"<p>Price to (v3 only)</p>\n","type":"text/plain"},"key":"pt","value":"<float>"},{"description":{"content":"<p>Page</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Per page</p>\n","type":"text/plain"},"key":"per","value":"<integer>"},{"description":{"content":"<p>PIES category (v3 only)</p>\n","type":"text/plain"},"key":"pc","value":"<string>"},{"description":{"content":"<p>PIES subcategory (v3 only)</p>\n","type":"text/plain"},"key":"psc","value":"<string>"},{"description":{"content":"<p>PIES part terminology (v3 only)</p>\n","type":"text/plain"},"key":"ppt","value":"<string>"},{"description":{"content":"<p>Category name depth 1 (v3 only)</p>\n","type":"text/plain"},"key":"c_d1","value":"<string>"},{"description":{"content":"<p>Category name depth 2 (v3 only)</p>\n","type":"text/plain"},"key":"c_d2","value":"<string>"},{"description":{"content":"<p>Category name depth 3 (v3 only)</p>\n","type":"text/plain"},"key":"c_d3","value":"<string>"},{"description":{"content":"<p>URI encoded JSON of key-value PIES data pairs <code>Example: encodeURIComponent(JSON.stringify({ \"Voltage\": \"12V\" }))</code> (v3 only)</p>\n","type":"text/plain"},"key":"attrs","value":"<string>"},{"description":{"content":"<p>Whether to return aggregations</p>\n","type":"text/plain"},"key":"aggs","value":"<boolean>"},{"description":{"content":"<p>Exclude products with core fees from product search results</p>\n","type":"text/plain"},"key":"x_core","value":"<boolean>"},{"description":{"content":"<p>FinditParts Product IDs in format ids[]=123&amp;ids[]=567 (v3 only)</p>\n","type":"text/plain"},"key":"ids","value":"<string>"},{"description":{"content":"<p>FinditParts Product IDs in format ids[]=123&amp;ids[]=567 (v3 only)</p>\n","type":"text/plain"},"key":"ids","value":"<string>"},{"description":{"content":"<p>Whether to use v3 search (v2 is default)</p>\n","type":"text/plain"},"key":"use_v3_search","value":"<boolean>"}],"variable":[]}},"response":[{"id":"79d9e126-27d2-4c44-8894-431d7e66d04f","name":"Product Search Response: A list of matching products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products?part_number=<string>&query=<string>&order=manufacturer_to_a&m=<string>&strict=<boolean>&ioos=<boolean>&tags=Top Seller&pf=<float>&pt=<float>&page=<integer>&per=<integer>&pc=<string>&psc=<string>&ppt=<string>&c_d1=<string>&c_d2=<string>&c_d3=<string>&attrs=<string>&aggs=<boolean>&x_core=<boolean>&ids=<string>&use_v3_search=<boolean>","host":["https://finditparts.com/api/v1"],"path":["products"],"query":[{"description":"Exact part number to match","key":"part_number","value":"<string>"},{"description":"General part search query","key":"query","value":"<string>"},{"description":"Result ordering (default is best match/most relevant \"_score\")","key":"order","value":"manufacturer_to_a"},{"description":"Manufacturer name filter (exact match, uppercase, example \"HALDEX\")","key":"m","value":"<string>"},{"description":"Enforce stricter querying (exact match part numbers only vs including partial matches and using 'AND' operators vs 'OR' for keywords)","key":"strict","value":"<boolean>"},{"description":"Include out of stock items in results (v3 only)","key":"ioos","value":"<boolean>"},{"description":"Product tags (v3 only)","key":"tags","value":"Top Seller"},{"description":"Price from (v3 only)","key":"pf","value":"<float>"},{"description":"Price to (v3 only)","key":"pt","value":"<float>"},{"description":"Page","key":"page","value":"<integer>"},{"description":"Per page","key":"per","value":"<integer>"},{"description":"PIES category (v3 only)","key":"pc","value":"<string>"},{"description":"PIES subcategory (v3 only)","key":"psc","value":"<string>"},{"description":"PIES part terminology (v3 only)","key":"ppt","value":"<string>"},{"description":"Category name depth 1 (v3 only)","key":"c_d1","value":"<string>"},{"description":"Category name depth 2 (v3 only)","key":"c_d2","value":"<string>"},{"description":"Category name depth 3 (v3 only)","key":"c_d3","value":"<string>"},{"description":"URI encoded JSON of key-value PIES data pairs `Example: encodeURIComponent(JSON.stringify({ \"Voltage\": \"12V\" }))` (v3 only)","key":"attrs","value":"<string>"},{"description":"Whether to return aggregations","key":"aggs","value":"<boolean>"},{"description":"Exclude products with core fees from product search results","key":"x_core","value":"<boolean>"},{"description":"FinditParts Product IDs in format ids[]=123&ids[]=567 (v3 only)","key":"ids","value":"<string>"},{"description":"Whether to use v3 search (v2 is default)","key":"use_v3_search","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"products\": [\n    {\n      \"finditparts_product_id\": \"<integer>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"image\": \"<string>\",\n      \"image_thumbnail\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"preferred_variant_id\": \"<integer>\",\n      \"part_number_match_type\": \"partial\",\n      \"cross_reference_match_type\": \"full\",\n      \"match_score\": \"<float>\",\n      \"match_relative_score\": \"<float>\",\n      \"sellable\": \"<boolean>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"tags\": [\n        \"In Stock\",\n        \"Express Shipping\"\n      ]\n    },\n    {\n      \"finditparts_product_id\": \"<integer>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\",\n      \"part_number\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"image\": \"<string>\",\n      \"image_thumbnail\": \"<string>\",\n      \"short_description\": \"<string>\",\n      \"preferred_variant_id\": \"<integer>\",\n      \"part_number_match_type\": \"none\",\n      \"cross_reference_match_type\": \"none\",\n      \"match_score\": \"<float>\",\n      \"match_relative_score\": \"<float>\",\n      \"sellable\": \"<boolean>\",\n      \"variants\": [\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        }\n      ],\n      \"tags\": [\n        \"In Stock\",\n        \"Top Rated\"\n      ]\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": \"<integer>\",\n    \"per_page\": \"<integer>\",\n    \"total_count\": \"<integer>\"\n  },\n  \"errno\": \"<integer>\",\n  \"aggs\": {\n    \"price_ranges\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"manufacturer\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"pies_category\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"pies_subcategory\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"pies_part_terminology\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"tags\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    },\n    \"pies_attributes\": {\n      \"buckets\": [\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        },\n        {\n          \"key\": \"<string>\",\n          \"doc_count\": \"<number>\",\n          \"to\": \"<number>\",\n          \"from\": \"<number>\"\n        }\n      ],\n      \"doc_count_error_upper_bound\": \"<number>\",\n      \"sum_other_doc_count\": \"<number>\"\n    }\n  }\n}"},{"id":"ce0d3e7d-be02-43c7-af22-2777706620fa","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/products?part_number=<string>&query=<string>&order=manufacturer_to_a&m=<string>&strict=<boolean>&ioos=<boolean>&tags=Top Seller&pf=<float>&pt=<float>&page=<integer>&per=<integer>&pc=<string>&psc=<string>&ppt=<string>&c_d1=<string>&c_d2=<string>&c_d3=<string>&attrs=<string>&aggs=<boolean>&x_core=<boolean>&ids=<string>&use_v3_search=<boolean>","host":["https://finditparts.com/api/v1"],"path":["products"],"query":[{"description":"Exact part number to match","key":"part_number","value":"<string>"},{"description":"General part search query","key":"query","value":"<string>"},{"description":"Result ordering (default is best match/most relevant \"_score\")","key":"order","value":"manufacturer_to_a"},{"description":"Manufacturer name filter (exact match, uppercase, example \"HALDEX\")","key":"m","value":"<string>"},{"description":"Enforce stricter querying (exact match part numbers only vs including partial matches and using 'AND' operators vs 'OR' for keywords)","key":"strict","value":"<boolean>"},{"description":"Include out of stock items in results (v3 only)","key":"ioos","value":"<boolean>"},{"description":"Product tags (v3 only)","key":"tags","value":"Top Seller"},{"description":"Price from (v3 only)","key":"pf","value":"<float>"},{"description":"Price to (v3 only)","key":"pt","value":"<float>"},{"description":"Page","key":"page","value":"<integer>"},{"description":"Per page","key":"per","value":"<integer>"},{"description":"PIES category (v3 only)","key":"pc","value":"<string>"},{"description":"PIES subcategory (v3 only)","key":"psc","value":"<string>"},{"description":"PIES part terminology (v3 only)","key":"ppt","value":"<string>"},{"description":"Category name depth 1 (v3 only)","key":"c_d1","value":"<string>"},{"description":"Category name depth 2 (v3 only)","key":"c_d2","value":"<string>"},{"description":"Category name depth 3 (v3 only)","key":"c_d3","value":"<string>"},{"description":"URI encoded JSON of key-value PIES data pairs `Example: encodeURIComponent(JSON.stringify({ \"Voltage\": \"12V\" }))` (v3 only)","key":"attrs","value":"<string>"},{"description":"Whether to return aggregations","key":"aggs","value":"<boolean>"},{"description":"Exclude products with core fees from product search results","key":"x_core","value":"<boolean>"},{"description":"FinditParts Product IDs in format ids[]=123&ids[]=567 (v3 only)","key":"ids","value":"<string>"},{"description":"Whether to use v3 search (v2 is default)","key":"use_v3_search","value":"<boolean>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"22039613-dd69-438d-9227-91d2eac17c77"}],"id":"d10a1279-ebab-4ddb-9dba-3ee6f3f8db41","_postman_id":"d10a1279-ebab-4ddb-9dba-3ee6f3f8db41","description":""},{"name":"variants","item":[{"name":"{variant_ids}","item":[{"name":"Variant Lookup","id":"2a30102b-adb3-47bb-a876-951790224168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/variants/:variant_ids","description":"<p>Returns the matching variants by ID</p>\n<p>Requires a JWT in the Authorization header with intent 'PRODUCT_SEARCH' and on behalf of a 'Customer Reference' (See Workflow section in /reseller_customer_sessions endpoint).</p>\n<p>Use a customer referenced JWT with intent <code>PRODUCT_SEARCH</code> to return account specific pricing or a Generic JWT token (no customer reference) to return list price.</p>\n<h2 id=\"jwt-payload-for-product-search\">JWT payload for product search</h2>\n<p>Example JWT payload (with customer reference <code>sub</code> to return <code>account_price</code>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  sub: \"CUSTOMER_123\",\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n  data: {\n    intent: \"PRODUCT_SEARCH\",\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre><p>Example generic JWT payload (no customer reference <code>sub</code> to return generic list price of products):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre>","urlObject":{"path":["variants",":variant_ids"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"83c2109a-476f-46ef-8ebe-d86861bbcab5","description":{"content":"<p>(Required) Variant IDs comma delimited (no spaces)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"variant_ids"}]}},"response":[{"id":"0fa84028-2f26-4ba0-8c15-b6a83ec67d98","name":"Variant Lookup Response: A list of matching variants","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/variants/:variant_ids","host":["https://finditparts.com/api/v1"],"path":["variants",":variant_ids"],"variable":[{"key":"variant_ids"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"variants\": [\n    {\n      \"variant_id\": \"<integer>\",\n      \"price\": \"<string>\",\n      \"quantity\": \"<integer>\",\n      \"pack_quantity\": \"<integer>\",\n      \"minimum\": \"<integer>\",\n      \"verified\": \"<boolean>\",\n      \"location\": \"<string>\",\n      \"timezone\": \"<string>\",\n      \"cutoff\": \"<dateTime>\",\n      \"past_cutoff\": \"<boolean>\",\n      \"core_price\": \"<string>\",\n      \"estimated_business_days_to_ship\": \"<integer>\",\n      \"estimated_ship_date\": \"<dateTime>\",\n      \"estimated_days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date_ground\": \"<dateTime>\",\n      \"account_price\": \"<string>\",\n      \"minimum_order\": \"<string>\",\n      \"minimum_order_fee\": \"<string>\"\n    },\n    {\n      \"variant_id\": \"<integer>\",\n      \"price\": \"<string>\",\n      \"quantity\": \"<integer>\",\n      \"pack_quantity\": \"<integer>\",\n      \"minimum\": \"<integer>\",\n      \"verified\": \"<boolean>\",\n      \"location\": \"<string>\",\n      \"timezone\": \"<string>\",\n      \"cutoff\": \"<dateTime>\",\n      \"past_cutoff\": \"<boolean>\",\n      \"core_price\": \"<string>\",\n      \"estimated_business_days_to_ship\": \"<integer>\",\n      \"estimated_ship_date\": \"<dateTime>\",\n      \"estimated_days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date_ground\": \"<dateTime>\",\n      \"account_price\": \"<string>\",\n      \"minimum_order\": \"<string>\",\n      \"minimum_order_fee\": \"<string>\"\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"06e25af9-0764-4406-b591-96c8ca2d9517","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/variants/:variant_ids","host":["https://finditparts.com/api/v1"],"path":["variants",":variant_ids"],"variable":[{"key":"variant_ids"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"2a30102b-adb3-47bb-a876-951790224168"}],"id":"7398abb5-29eb-424d-9324-8dc987c42a42","_postman_id":"7398abb5-29eb-424d-9324-8dc987c42a42","description":""}],"id":"58ff0ad7-d1c2-4dc3-b1bf-e978c3774299","_postman_id":"58ff0ad7-d1c2-4dc3-b1bf-e978c3774299","description":""},{"name":"shipping_methods","item":[{"name":"Shipping Methods","id":"27e57e19-e303-4c04-b9a6-f8ccfd4e34d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/shipping_methods?line_items=[object Object]&line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","description":"<p>Returns a list of shipping methods and estimated costs for a given order and address.</p>\n<p>This API can be accessed using a JWT or an API key.</p>\n<h2 id=\"api-key-authentication\">API Key Authentication</h2>\n<p>Requires an API Key in the Authorization header.</p>\n<p>Parameters <code>line_items</code> and <code>address</code> should be sent as query parameters if using API Key Authentication.</p>\n<h2 id=\"example-api-key-request\">Example API Key Request</h2>\n<p>Single variant:\n<code>GET /api/v1/shipping_methods.json?line_items[][variant_id]=123&amp;line_items[][quantity]=1&amp;address[zipcode]=93101</code></p>\n<p>Multiple variants via product_id:\n<code>GET /api/v1/shipping_methods.json?line_items[][finditparts_product_id]=456&amp;line_items[][quantity]=1&amp;line_items[][finditparts_product_id]=123&amp;line_items[][quantity]=1&amp;address[zipcode]=93101</code></p>\n<h2 id=\"jwt-authentication\">JWT Authentication</h2>\n<p>Requires a JWT in the Authorization header and optionally on behalf of a 'Customer Reference' (as the JWT <code>sub</code>)</p>\n<h2 id=\"jwt-payload-for-fetching-shipping-methods\">JWT Payload for fetching shipping methods</h2>\n<ul>\n<li>Each JWT to fetch shipping methods must include the subject header <code>sub</code> which should specify the Customer Reference.</li>\n<li>Each JWT to fetch shipping methods may include a <code>data</code> payload matching the following format (as an alternative to specifying the data in query parameters):</li>\n</ul>\n<p>Example JWT payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  sub: \"CUSTOMER_123\",\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n  data: {\n    intent: \"SHIPPING_METHODS\",\n    line_items: [{ variant_id: '...', quantity: '...' }], // Line items in the proposed order. See NEW_ORDER for format of `line_items`\n    address: {\n      address1: '...',\n      address2: '...',\n      city: 'Los Angeles',\n      state: 'CA',\n      zipcode: '90000',\n      country: 'USA',\n      address_type: \"commercial\" || \"residential\"\n    }, // Address to use for estimate\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre>","urlObject":{"path":["shipping_methods"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"zipcode","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address1","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address2","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"state","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"city","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"country","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address_type","value":"commercial"}],"variable":[]}},"response":[{"id":"f6f31906-d95b-4f82-a9b7-0e69a64bf842","name":"Shipping Methods Response: A list of available shippping methods and cost","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/shipping_methods?line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["shipping_methods"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"shipping_methods\": [\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"1b2b90e4-a6d5-47a9-b1c1-8887c8325fc5","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/shipping_methods?line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["shipping_methods"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"27e57e19-e303-4c04-b9a6-f8ccfd4e34d9"}],"id":"4195326a-77fa-4890-9cb8-44f976e11bee","_postman_id":"4195326a-77fa-4890-9cb8-44f976e11bee","description":""},{"name":"reseller_customer_sessions","item":[{"name":"{reseller_customer_session_id}","item":[{"name":"Get Reseller Customer Session","id":"f356676f-af4d-4f4d-a536-494717f02b0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","description":"<p>Returns status and details of a session. For NEW_ORDER intent sessions, this will also return the order details including status and shipments. Use a Generic JWT token (no customer reference).</p>\n","urlObject":{"path":["reseller_customer_sessions",":reseller_customer_session_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"901ca02c-5a73-48ba-b416-688c60809326","description":{"content":"<p>(Required) Reseller Customer Session ID returned from create</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reseller_customer_session_id"}]}},"response":[{"id":"318676bb-6a54-4a30-9a0b-cb3ec857ae20","name":"Reseller Customer Session Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","host":["https://finditparts.com/api/v1"],"path":["reseller_customer_sessions",":reseller_customer_session_id"],"variable":[{"key":"reseller_customer_session_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reseller_customer_session\": {\n    \"intent\": \"user_setup\",\n    \"id\": \"<string>\",\n    \"redirect_url\": \"<string>\",\n    \"resolution\": \"pending\",\n    \"order\": {\n      \"number\": \"<string>\",\n      \"state\": \"returned\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    },\n    \"expires_at\": \"<string>\",\n    \"customer_reference\": \"<string>\"\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"a2f034f5-a8f7-4fcd-82a2-26e9a5f9ed27","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","host":["https://finditparts.com/api/v1"],"path":["reseller_customer_sessions",":reseller_customer_session_id"],"variable":[{"key":"reseller_customer_session_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f356676f-af4d-4f4d-a536-494717f02b0e"},{"name":"Cancels Reseller Customer Session Intent","id":"fcff6e72-02d7-4080-a815-4ea82968c53d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","description":"<p>Returns new order status or user status depending on intent. For NEW_ORDER intent sessions, this request will attempt to cancel an order that was submitted or return an error if unable to cancel. Use a Generic JWT token (no customer reference).</p>\n","urlObject":{"path":["reseller_customer_sessions",":reseller_customer_session_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"37bd34af-04dd-417e-b1ef-82eb4ad45c17","description":{"content":"<p>(Required) Reseller Customer Session ID returned from create</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reseller_customer_session_id"}]}},"response":[{"id":"437cdf5c-1f42-45de-93b3-0284eee1f3ce","name":"Delete Reseller Customer Session Response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","host":["https://finditparts.com/api/v1"],"path":["reseller_customer_sessions",":reseller_customer_session_id"],"variable":[{"key":"reseller_customer_session_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reseller_customer_session\": {\n    \"intent\": \"user_setup\",\n    \"id\": \"<string>\",\n    \"redirect_url\": \"<string>\",\n    \"resolution\": \"pending\",\n    \"order\": {\n      \"number\": \"<string>\",\n      \"state\": \"returned\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    },\n    \"expires_at\": \"<string>\",\n    \"customer_reference\": \"<string>\"\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"36021f1b-53c2-49aa-9f24-d722ade4e4f1","name":"API error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","host":["https://finditparts.com/api/v1"],"path":["reseller_customer_sessions",":reseller_customer_session_id"],"variable":[{"key":"reseller_customer_session_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"fcff6e72-02d7-4080-a815-4ea82968c53d"}],"id":"1ba77c50-c708-4e54-8a22-54fc58b388c2","_postman_id":"1ba77c50-c708-4e54-8a22-54fc58b388c2","description":""},{"name":"Create Reseller Customer Session","id":"f7e09570-a5ec-4f40-a32b-80828defb789","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/reseller_customer_sessions","description":"<p>Creates a new Reseller Customer Session with intent of USER_SETUP or NEW_ORDER.</p>\n<p>Returns session details including redirect_url for embedding or redirecting.</p>\n<h2 id=\"workflow\">Workflow</h2>\n<p>Each Reseller Customer Session is generated on behalf of a \"Customer Reference\". A Customer Reference should be a unique handle to your customer which will then be linked to a FinditParts account. Common identifiers could be a user ID or an email. This is the reference you will use in the future to place orders on behalf of the linked FinditParts user from a USER_SETUP session.</p>\n<p>Each session has an intent of either USER_SETUP or NEW_ORDER.  You must complete a USER_SETUP session for each Customer Reference before performing a NEW_ORDER session.</p>\n<p>Upon creation, a session will return a <code>finditparts.com</code> URL that should be embedded in an iframe on your site or redirected to for the customer to complete USER_SETUP or a NEW_ORDER.</p>\n<p>The USER_SETUP session will prompt the user to create a FinditParts account along with payment details and shipping address or login to an existing FinditParts account. You may re-run a USER_SETUP session on a previously setup Customer Reference to modify payment details or shipping addresses.</p>\n<p>The NEW_ORDER session will prompt the user with an order summary including final cost and confirmation of payment and shipping details.</p>\n<h2 id=\"jwt-payload-for-creating-reseller-customer-session\">JWT Payload for creating Reseller Customer Session</h2>\n<ul>\n<li>Each JWT to create a Reseller Customer Session must include the subject header <code>sub</code> which should specify the Customer Reference.</li>\n<li>Each JWT to create a Reseller Customer Session must include a <code>data</code> payload matching one of following formats depending on intent of the session being created:</li>\n</ul>\n<h3 id=\"user_setup-session\">USER_SETUP Session</h3>\n<p>To link and setup a customer reference you provide to a new or existing FinditParts user, you can create a USER_SETUP session by providing a <code>data</code> payload in the JWT of the following format:</p>\n<p>Example JWT payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  sub: \"CUSTOMER_123\",\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n  data: {\n    intent: \"USER_SETUP\",\n    user: {\n      firstname: '...',\n      lastname: '...',\n      email: '...',\n      company: '...',\n      address: {\n        address1: '...',\n        address2: '...',\n        city: 'Los Angeles',\n        zipcode: '90000',\n        state: 'CA',\n        phone: '555-555-5555',\n        country: 'USA',\n      }, // Address to prefill\n    }, // Optional to prefill form\n    redirect_url: \"https://acmecorp.com/finditparts_setup_success\", // Optional to redirect upon completion, otherwise will postMessage\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre><p>If <code>redirect_url</code> is provided, the following query parameters will be provided upon completion:</p>\n<ul>\n<li>Success will include <code>resolution=SUCCESS&amp;customer_reference=XXX&amp;reseller_customer_session_id=XXX</code></li>\n<li>Failure will include <code>resolution=FAILED&amp;reason=XXX&amp;customer_reference=XXX&amp;reseller_customer_session_id=XXX</code></li>\n</ul>\n<h3 id=\"new_order-session\">NEW_ORDER Session</h3>\n<p>To place a new order on behalf of a previously setup Customer Reference, you can create a NEW_ORDER session by providing a <code>data</code> payload in the JWT of the following format:</p>\n<p>Example JWT payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>JWT.sign({\n  sub: \"CUSTOMER_123\",\n  iss: \"acme-corp-sandbox\",\n  exp: 1600903066,\n  data: {\n    intent: \"NEW_ORDER\",\n    line_items: [\n      // Can specify line items by a finditparts_product_id, specific variant_id, or part_number and manufacturer\n      {\n        finditparts_product_id: \"&lt;FinditParts product ID&gt;\",\n        quantity: &lt;integer&gt;,\n      },\n      {\n        variant_id: \"&lt;specific variant ID from Product Search&gt;\",\n        quantity: &lt;integer&gt;,\n      },\n      {\n        part_number: \"&lt;part number&gt;\",\n        manufacturer: \"&lt;name of manufacturer to assist product identification&gt;\",\n        quantity: &lt;integer&gt;,\n      },\n      ...\n    ],\n    default_shipping_address: \"123 Main St, Los Angeles, CA, 90000\", # Default shipping address to select on the new order. Must match an address already added to the account. Match is performed by numerical address and zipcode.\n    default_shipping_method: \"29\", # Shipping Method identifiers can be found via `/shipping_methods` API call for a given set of `line_items`\n    redirect_url: \"https://acmecorp.com/finditparts_setup_success\", // Optional to redirect upon completion, otherwise will postMessage\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"JWT.TOKEN.HERE\"\n</code></pre><p>If <code>redirect_url</code> is provided, the following query parameters will be provided upon completion:</p>\n<ul>\n<li>Success will include resolution=SUCCESS&amp;customer_reference=XXX&amp;reseller_customer_session_id=XXX</li>\n<li>Failure will include resolution=FAILURE/CANCELLED&amp;customer_reference=XXX&amp;reseller_customer_session_id=XXX</li>\n</ul>\n<p>If no <code>redirect_url</code> is provided (iframe implementation), the following will <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage\">postMessage</a> to the parent iframe upon completion:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Error:\n{\n  error: true,\n  message: String\n}\n\nSuccess:\n{\n  error: false,\n  intent: String,\n  resolution: String,\n  reseller_customer_session_id: String,\n  customer_reference: String,\n}\n</code></pre>","urlObject":{"path":["reseller_customer_sessions"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7e69a6f3-2f04-4bd2-8005-ccb9f50ede21","name":"Create Reseller Customer Session: ","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/reseller_customer_sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reseller_customer_session\": {\n    \"intent\": \"user_setup\",\n    \"id\": \"<string>\",\n    \"redirect_url\": \"<string>\",\n    \"resolution\": \"pending\",\n    \"order\": {\n      \"number\": \"<string>\",\n      \"state\": \"returned\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    },\n    \"expires_at\": \"<string>\",\n    \"customer_reference\": \"<string>\"\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"0ae9e446-a1d4-4ce8-b893-e74c023fd8d6","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/reseller_customer_sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f7e09570-a5ec-4f40-a32b-80828defb789"}],"id":"5ae5c940-9e91-4ef5-870d-138fcd8703b7","_postman_id":"5ae5c940-9e91-4ef5-870d-138fcd8703b7","description":""},{"name":"sessions","item":[{"name":"refresh","item":[{"name":"Refresh Session","id":"037b3083-b52c-4816-a468-6c3a5fa9fd3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/sessions/refresh","description":"<p>Returns a new user and user specific JWT token that can be used in the <code>Authentication</code> header to perform API calls on behalf of a user or return user specific pricing.</p>\n<p>User specific session JWTs have a default expiration of 1 month. Re-run this call prior to expiration to continually fetch new sessions as needed.</p>\n<p>Requires an existing and unexpired user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["sessions","refresh"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1f207c49-75b4-4ae2-9d4b-c13e40fea5d8","name":"Refresh Session Response: User specific JWT","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"jwt\": \"<string>\",\n  \"user\": {\n    \"id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"firstname\": \"<string>\",\n    \"lastname\": \"<string>\",\n    \"company\": \"<string>\",\n    \"payment_processor_client_token\": \"<string>\",\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"0a54ea17-749e-4d4d-9ab4-259715cd49b9","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions/refresh"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"037b3083-b52c-4816-a468-6c3a5fa9fd3c"}],"id":"43ca73d1-d55c-431b-b4e1-5a9b8806191f","_postman_id":"43ca73d1-d55c-431b-b4e1-5a9b8806191f","description":""},{"name":"current","item":[{"name":"Get Current Session","id":"098cf731-04c3-41cd-8666-7b77c0569067","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/sessions/current","description":"<p>Returns current session for user specific session JWT.</p>\n<p>Requires a user specific session JWT in the Authorization header.</p>\n","urlObject":{"path":["sessions","current"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b2df8c96-c054-4d39-baa7-3180bac33362","name":"Get Current Session Response: Current user","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"user\": {\n    \"id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"firstname\": \"<string>\",\n    \"lastname\": \"<string>\",\n    \"company\": \"<string>\",\n    \"payment_processor_client_token\": \"<string>\",\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"a2dfbf8d-d8da-4a99-855f-2ec8497f95a2","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions/current"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"098cf731-04c3-41cd-8666-7b77c0569067"}],"id":"58015f9f-5ff7-4367-a2a1-9f10f2455def","_postman_id":"58015f9f-5ff7-4367-a2a1-9f10f2455def","description":""},{"name":"Create Session","id":"f3b12b24-350c-44fe-83e5-16e06cda202d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/sessions","description":"<p>Returns a user and user specific JWT token that can be used in the <code>Authentication</code> header to perform API calls on behalf of a user or return user specific pricing.</p>\n<p>User specific sessions have a default expiration of 1 month. Use the <code>refreshSession</code> API call to refresh credentials before expiration if desired.</p>\n<p>Requires an API key in the Authorization header.</p>\n","urlObject":{"path":["sessions"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1a249053-9a7e-48c4-a857-87565b8fd157","name":"Create Session Response: User specific JWT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"jwt\": \"<string>\",\n  \"user\": {\n    \"id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"firstname\": \"<string>\",\n    \"lastname\": \"<string>\",\n    \"company\": \"<string>\",\n    \"payment_processor_client_token\": \"<string>\",\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"108caeef-552d-4cd2-b0a3-b73f0e578462","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f3b12b24-350c-44fe-83e5-16e06cda202d"},{"name":"Destroy Sessions","id":"b5925155-3859-4254-93c5-15ab644d010c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/sessions","description":"<p>Destroys current sessions for user.</p>\n<p>Requires a user specific API key in the Authorization header.</p>\n","urlObject":{"path":["sessions"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"68e586c9-c6e4-41a6-a6fa-ace720397f4d","name":"Destroy Sessions Response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"b67d7e3a-1eae-43b8-988b-cb89484febe7","name":"API error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"b5925155-3859-4254-93c5-15ab644d010c"}],"id":"c75b232e-f7a8-4cce-a801-0f57aeda45ce","_postman_id":"c75b232e-f7a8-4cce-a801-0f57aeda45ce","description":""},{"name":"reseller_customers","item":[{"name":"Create Reseller Customer","id":"de147ba9-1df3-41ed-8c42-504ac35d6938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"customer_reference\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/reseller_customers","description":"<p>Requires a signed JWT on behalf of a Master Account API client in the Authorization header.</p>\n<p>Creates a subuser on your master account that can be referenced and acted upon using the <code>customer_reference</code> as the subject <code>sub</code> in the signed JWT used in API calls to endpoints such as <code>/addresses</code>, <code>/carts</code>, etc.</p>\n","urlObject":{"path":["reseller_customers"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8b98dec-46fd-480f-971b-8881d726584e","name":"Create Reseller Customer Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"customer_reference\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/reseller_customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"reseller_customer\": {\n    \"customer_reference\": \"<string>\",\n    \"user_id\": \"<number>\"\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"4b85cc4f-aa27-49c8-86c4-554d3981a111","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"customer_reference\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/reseller_customers"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"de147ba9-1df3-41ed-8c42-504ac35d6938"},{"name":"List Reseller Customers","id":"ac4c6b09-23bd-40c6-8393-2b7be3cc27eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/reseller_customers?page=<string>","description":"<p>Requires a Master Account API key in the Authorization header.</p>\n<p>Lists all Reseller Customers created for the master account API key</p>\n","urlObject":{"path":["reseller_customers"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"<string>"}],"variable":[]}},"response":[{"id":"96799bea-d52e-4d6e-93e4-62fa0c19d796","name":"List Reseller Customers Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customers?page=<string>","host":["https://finditparts.com/api/v1"],"path":["reseller_customers"],"query":[{"description":"Page number","key":"page","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"reseller_customers\": [\n    {\n      \"value\": \"reference #/components/schemas/ResellerCustomers not found in the OpenAPI spec\"\n    },\n    {\n      \"value\": \"reference #/components/schemas/ResellerCustomers not found in the OpenAPI spec\"\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": \"<integer>\",\n    \"per_page\": \"<integer>\",\n    \"total_count\": \"<integer>\"\n  }\n}"},{"id":"0c223365-3488-404b-90a2-5f1abe120b9c","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/reseller_customers?page=<string>","host":["https://finditparts.com/api/v1"],"path":["reseller_customers"],"query":[{"description":"Page number","key":"page","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ac4c6b09-23bd-40c6-8393-2b7be3cc27eb"}],"id":"bb2b4f38-d646-4111-b3e8-f61bac62b828","_postman_id":"bb2b4f38-d646-4111-b3e8-f61bac62b828","description":""},{"name":"users","item":[{"name":"Create User","id":"7dae69ed-28dd-4e2f-b981-83c53739eafa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"company\": \"<string>\",\n  \"payment_processor_client_token\": \"<string>\",\n  \"shipping_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"commercial\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  },\n  \"billing_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"residential\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/users","description":"<p>Returns a user and user specific JWT token that can be used in the <code>Authentication</code> header to perform API calls on behalf of a user or return user specific pricing.</p>\n<p>Requires an API key in the Authorization header.</p>\n","urlObject":{"path":["users"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e48aae3a-ec90-4139-9c6b-f8210beb6abf","name":"Create User Response: User and user specific JWT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"company\": \"<string>\",\n  \"payment_processor_client_token\": \"<string>\",\n  \"shipping_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"commercial\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  },\n  \"billing_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"residential\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"jwt\": \"<string>\",\n  \"user\": {\n    \"id\": \"<string>\",\n    \"email\": \"<string>\",\n    \"firstname\": \"<string>\",\n    \"lastname\": \"<string>\",\n    \"company\": \"<string>\",\n    \"payment_processor_client_token\": \"<string>\",\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"b6006730-9c6c-4a16-8504-a3928fa54e28","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<string>\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"company\": \"<string>\",\n  \"payment_processor_client_token\": \"<string>\",\n  \"shipping_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"commercial\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  },\n  \"billing_address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"residential\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/users"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"7dae69ed-28dd-4e2f-b981-83c53739eafa"}],"id":"d2d5a622-e97a-441e-a447-a79c0caa3efa","_postman_id":"d2d5a622-e97a-441e-a447-a79c0caa3efa","description":""},{"name":"partners","item":[{"name":"shipping_methods","item":[{"name":"Partners Shipping Methods","id":"c3e5d653-b5d1-46d3-a7be-c5b89bed9a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/partners/shipping_methods?line_items=[object Object]&line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","description":"<p>Returns a list of the partners shipping methods and estimated costs for a given order and address.</p>\n<p>Requires a Partner API key in the Authorization header.</p>\n","urlObject":{"path":["partners","shipping_methods"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"zipcode","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address1","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address2","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"state","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"city","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"country","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address_type","value":"commercial"}],"variable":[]}},"response":[{"id":"8a740cf8-e7a6-4120-aa62-86d1412dc91f","name":"Partners Shipping Methods Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/partners/shipping_methods?line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["partners","shipping_methods"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"shipping_methods\": [\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"3e86d076-9462-446a-987c-7efb27b81cf1","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/partners/shipping_methods?line_items=[object Object]&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["partners","shipping_methods"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c3e5d653-b5d1-46d3-a7be-c5b89bed9a1f"}],"id":"66352456-c241-4364-b57b-e31ed95e66ad","_postman_id":"66352456-c241-4364-b57b-e31ed95e66ad","description":""},{"name":"place_order","item":[{"name":"Partners Place Order","id":"fdf1e78f-7877-4eef-ba75-9eed045b5902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/partners/place_order?line_items=[object Object]&line_items=[object Object]&customer_reference=<string>&shipping_method_id=<integer>&po_number=<string>&partner_shipping_price=<float>&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","description":"<p>Places a partner order.</p>\n<p>Requires a Partner API key in the Authorization header.</p>\n","urlObject":{"path":["partners","place_order"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"line_items","value":"[object Object]"},{"description":{"content":"<p>(Required) Customer Reference to segment orders by customer</p>\n","type":"text/plain"},"key":"customer_reference","value":"<string>"},{"description":{"content":"<p>(Required) Shipping Method ID from the shipping methods API call</p>\n","type":"text/plain"},"key":"shipping_method_id","value":"<integer>"},{"description":{"content":"<p>Purchase Order Number</p>\n","type":"text/plain"},"key":"po_number","value":"<string>"},{"description":{"content":"<p>Customer quoted shipping price to prevent changes between quoted price and current price</p>\n","type":"text/plain"},"key":"partner_shipping_price","value":"<float>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"zipcode","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address1","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address2","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"state","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"city","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"country","value":"<string>"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"address_type","value":"commercial"}],"variable":[]}},"response":[{"id":"9f87cbc8-76f1-418f-94c7-2901bebd76aa","name":"Partners Place Order Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/partners/place_order?line_items=[object Object]&customer_reference=<string>&shipping_method_id=<integer>&po_number=<string>&partner_shipping_price=<float>&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["partners","place_order"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) Customer Reference to segment orders by customer","key":"customer_reference","value":"<string>"},{"description":"(Required) Shipping Method ID from the shipping methods API call","key":"shipping_method_id","value":"<integer>"},{"description":"Purchase Order Number","key":"po_number","value":"<string>"},{"description":"Customer quoted shipping price to prevent changes between quoted price and current price","key":"partner_shipping_price","value":"<float>"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"shipping_methods\": [\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"29e20a22-52f5-49bc-9f45-11405fdc9e6f","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/partners/place_order?line_items=[object Object]&customer_reference=<string>&shipping_method_id=<integer>&po_number=<string>&partner_shipping_price=<float>&zipcode=<string>&address1=<string>&address2=<string>&state=<string>&city=<string>&country=<string>&address_type=commercial","host":["https://finditparts.com/api/v1"],"path":["partners","place_order"],"query":[{"description":"(Required) ","key":"line_items","value":"[object Object]"},{"description":"(Required) Customer Reference to segment orders by customer","key":"customer_reference","value":"<string>"},{"description":"(Required) Shipping Method ID from the shipping methods API call","key":"shipping_method_id","value":"<integer>"},{"description":"Purchase Order Number","key":"po_number","value":"<string>"},{"description":"Customer quoted shipping price to prevent changes between quoted price and current price","key":"partner_shipping_price","value":"<float>"},{"description":"(Required) ","key":"zipcode","value":"<string>"},{"description":"(Required) ","key":"address1","value":"<string>"},{"description":"(Required) ","key":"address2","value":"<string>"},{"description":"(Required) ","key":"state","value":"<string>"},{"description":"(Required) ","key":"city","value":"<string>"},{"description":"(Required) ","key":"country","value":"<string>"},{"description":"(Required) ","key":"address_type","value":"commercial"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"fdf1e78f-7877-4eef-ba75-9eed045b5902"}],"id":"04eaba12-3efc-44e8-8313-a10c13633df9","_postman_id":"04eaba12-3efc-44e8-8313-a10c13633df9","description":""}],"id":"720d250b-526b-4371-aab1-a58fe9ef6c4c","_postman_id":"720d250b-526b-4371-aab1-a58fe9ef6c4c","description":""},{"name":"orders","item":[{"name":"search","item":[{"name":"Search Orders","id":"faea61fe-5c80-4687-9450-6129bee3b7a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/orders/search?q=<string>&start_date=<string>&end_date=<string>&sort_field=currently_assigned_to_id&sort_direction=asc&page=<string>","description":"<p>Returns a list of the users orders filtered by search parameters.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["orders","search"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>Search query</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>Earliest order date YYYY-MM-DD</p>\n","type":"text/plain"},"key":"start_date","value":"<string>"},{"description":{"content":"<p>Earliest order date YYYY-MM-DD</p>\n","type":"text/plain"},"key":"end_date","value":"<string>"},{"description":{"content":"<p>Field to sort orders on</p>\n","type":"text/plain"},"key":"sort_field","value":"currently_assigned_to_id"},{"description":{"content":"<p>Direction to sort orders on</p>\n","type":"text/plain"},"key":"sort_direction","value":"asc"},{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"<string>"}],"variable":[]}},"response":[{"id":"aa1a5faa-5b00-4df2-b6dd-2dc89ccf60df","name":"Search Orders Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders/search?q=<string>&start_date=<string>&end_date=<string>&sort_field=currently_assigned_to_id&sort_direction=asc&page=<string>","host":["https://finditparts.com/api/v1"],"path":["orders","search"],"query":[{"description":"Search query","key":"q","value":"<string>"},{"description":"Earliest order date YYYY-MM-DD","key":"start_date","value":"<string>"},{"description":"Earliest order date YYYY-MM-DD","key":"end_date","value":"<string>"},{"description":"Field to sort orders on","key":"sort_field","value":"currently_assigned_to_id"},{"description":"Direction to sort orders on","key":"sort_direction","value":"asc"},{"description":"Page number","key":"page","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"orders\": [\n    {\n      \"number\": \"<string>\",\n      \"state\": \"delivered\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    },\n    {\n      \"number\": \"<string>\",\n      \"state\": \"delivered\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"commercial\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": \"<integer>\",\n    \"per_page\": \"<integer>\",\n    \"total_count\": \"<integer>\"\n  }\n}"},{"id":"f0bf630c-1ddd-4ca7-9475-563282286982","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders/search?q=<string>&start_date=<string>&end_date=<string>&sort_field=currently_assigned_to_id&sort_direction=asc&page=<string>","host":["https://finditparts.com/api/v1"],"path":["orders","search"],"query":[{"description":"Search query","key":"q","value":"<string>"},{"description":"Earliest order date YYYY-MM-DD","key":"start_date","value":"<string>"},{"description":"Earliest order date YYYY-MM-DD","key":"end_date","value":"<string>"},{"description":"Field to sort orders on","key":"sort_field","value":"currently_assigned_to_id"},{"description":"Direction to sort orders on","key":"sort_direction","value":"asc"},{"description":"Page number","key":"page","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"faea61fe-5c80-4687-9450-6129bee3b7a8"}],"id":"0ba2238a-ebc4-4d3c-af52-e49437b587ac","_postman_id":"0ba2238a-ebc4-4d3c-af52-e49437b587ac","description":""},{"name":"{order_id}","item":[{"name":"Order Details","id":"c6d235fb-45c3-4c70-b690-bdfb37c5138e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/orders/:order_id","description":"<p>Returns the Order Details</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["orders",":order_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"16790ba3-af7f-45d0-b9e0-0ead2e6956e4","description":{"content":"<p>(Required) Order ID</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"order_id"}]}},"response":[{"id":"5ab5bf1b-94b9-4d69-aeda-5fbb0581b5b5","name":"Order Details Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders/:order_id","host":["https://finditparts.com/api/v1"],"path":["orders",":order_id"],"variable":[{"key":"order_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"order\": {\n    \"number\": \"<string>\",\n    \"state\": \"processing\",\n    \"total\": \"<string>\",\n    \"items_total\": \"<string>\",\n    \"po_number\": \"<string>\",\n    \"customer_reference\": \"<string>\",\n    \"user_id\": \"<string>\",\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<string>\",\n    \"shipping_carrier_type\": \"<string>\",\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"completed_at\": \"<string>\",\n    \"url\": \"<string>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"payments\": [\n      {\n        \"type\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"type\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ]\n  },\n  \"errno\": \"<integer>\"\n}"},{"id":"7b952f9f-a392-4e9f-a6bb-f71fb9394094","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders/:order_id","host":["https://finditparts.com/api/v1"],"path":["orders",":order_id"],"variable":[{"key":"order_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c6d235fb-45c3-4c70-b690-bdfb37c5138e"}],"id":"6ac7869f-2f27-46bc-b66d-361a091ac370","_postman_id":"6ac7869f-2f27-46bc-b66d-361a091ac370","description":""},{"name":"List Orders","id":"c46326eb-7d63-46d3-9896-3447b36910cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/orders?page=<string>","description":"<p>Returns a list of the users orders.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["orders"],"host":["https://finditparts.com/api/v1"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"<string>"}],"variable":[]}},"response":[{"id":"a5d26b02-31e5-4795-b963-1a3bd1218526","name":"List Orders Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders?page=<string>","host":["https://finditparts.com/api/v1"],"path":["orders"],"query":[{"description":"Page number","key":"page","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"orders\": [\n    {\n      \"number\": \"<string>\",\n      \"state\": \"delivered\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    },\n    {\n      \"number\": \"<string>\",\n      \"state\": \"delivered\",\n      \"total\": \"<string>\",\n      \"items_total\": \"<string>\",\n      \"po_number\": \"<string>\",\n      \"customer_reference\": \"<string>\",\n      \"user_id\": \"<string>\",\n      \"shipping_method_name\": \"<string>\",\n      \"shipping_method_id\": \"<string>\",\n      \"shipping_carrier_type\": \"<string>\",\n      \"shipping_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"residential\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"billing_address\": {\n        \"id\": \"<integer>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"country_id\": \"<integer>\",\n        \"country_iso\": \"<string>\",\n        \"address1\": \"<string>\",\n        \"state_id\": \"<integer>\",\n        \"state_name\": \"<string>\",\n        \"city_name\": \"<string>\",\n        \"zipcode\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address_type\": \"commercial\",\n        \"address2\": \"<string>\",\n        \"company\": \"<string>\",\n        \"is_default\": \"<boolean>\"\n      },\n      \"completed_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"line_items\": [\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        },\n        {\n          \"id\": \"<integer>\",\n          \"quantity\": \"<integer>\",\n          \"amount\": \"<float>\",\n          \"manufacturer\": \"<string>\",\n          \"part_number\": \"<string>\",\n          \"pack_qty\": \"<number>\",\n          \"variant\": {\n            \"variant_id\": \"<integer>\",\n            \"price\": \"<string>\",\n            \"quantity\": \"<integer>\",\n            \"pack_quantity\": \"<integer>\",\n            \"minimum\": \"<integer>\",\n            \"verified\": \"<boolean>\",\n            \"location\": \"<string>\",\n            \"timezone\": \"<string>\",\n            \"cutoff\": \"<dateTime>\",\n            \"past_cutoff\": \"<boolean>\",\n            \"core_price\": \"<string>\",\n            \"estimated_business_days_to_ship\": \"<integer>\",\n            \"estimated_ship_date\": \"<dateTime>\",\n            \"estimated_days_to_deliver\": \"<integer>\",\n            \"estimated_delivery_date_ground\": \"<dateTime>\",\n            \"account_price\": \"<string>\",\n            \"minimum_order\": \"<string>\",\n            \"minimum_order_fee\": \"<string>\"\n          },\n          \"product_images\": [\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            },\n            {\n              \"product\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"large\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"small\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              },\n              \"medium\": {\n                \"jpeg\": \"<string>\",\n                \"webp\": \"<string>\"\n              }\n            }\n          ],\n          \"variant_id\": \"<integer>\",\n          \"product_id\": \"<integer>\"\n        }\n      ],\n      \"adjustments\": [\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"label\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ],\n      \"shipments\": [\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        },\n        {\n          \"carrier\": \"<string>\",\n          \"is_shipped\": \"<boolean>\",\n          \"is_delivered\": \"<boolean>\",\n          \"has_tracking\": \"<boolean>\",\n          \"shipping_method\": \"<string>\",\n          \"tracking_number\": \"<string>\"\n        }\n      ],\n      \"payments\": [\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        },\n        {\n          \"type\": \"<string>\",\n          \"amount\": \"<float>\"\n        }\n      ]\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": \"<integer>\",\n    \"per_page\": \"<integer>\",\n    \"total_count\": \"<integer>\"\n  }\n}"},{"id":"557a8de8-91c6-4545-a936-e37d3360ef8b","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/orders?page=<string>","host":["https://finditparts.com/api/v1"],"path":["orders"],"query":[{"description":"Page number","key":"page","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c46326eb-7d63-46d3-9896-3447b36910cf"}],"id":"31c29da5-8f72-4b15-a280-e11a41a5d7f2","_postman_id":"31c29da5-8f72-4b15-a280-e11a41a5d7f2","description":""},{"name":"addresses","item":[{"name":"{address_id}","item":[{"name":"set_as_default","item":[{"name":"Set Default Address","id":"a1777131-49c8-47d6-acac-4628b5ee4c48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/addresses/:address_id/set_as_default","description":"<p>Sets a given users address as default.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["addresses",":address_id","set_as_default"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"e409e98b-1c3d-47a0-bfc0-092019e4c425","description":{"content":"<p>(Required) Address ID</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"address_id"}]}},"response":[{"id":"1448084e-0746-42b1-a50d-517ead03e35b","name":"Set Default Address Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id/set_as_default","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id","set_as_default"],"variable":[{"key":"address_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"740bc3d3-605c-4a7a-8ec5-e15497af4c16","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id/set_as_default","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id","set_as_default"],"variable":[{"key":"address_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"a1777131-49c8-47d6-acac-4628b5ee4c48"}],"id":"9b2a0ecc-6d5b-452f-a5a7-5d268e58a5de","_postman_id":"9b2a0ecc-6d5b-452f-a5a7-5d268e58a5de","description":""},{"name":"Update Address","id":"60bf7603-649b-4d40-974a-39f555713e97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/addresses/:address_id","description":"<p>Updates a given users address and returns the address.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["addresses",":address_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"831ef0c8-ad8c-46fc-aaf9-3e64f5f0655d","description":{"content":"<p>(Required) Address ID</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"address_id"}]}},"response":[{"id":"f018b390-1038-4992-8cb0-3cee19d3ebf3","name":"Update Address Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id"],"variable":[{"key":"address_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"addresses\": [\n    {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  ]\n}"},{"id":"f8da9577-23e2-4550-8d7b-c72fb5b5a20a","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id"],"variable":[{"key":"address_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"60bf7603-649b-4d40-974a-39f555713e97"},{"name":"Delete Address","id":"6b8c49fd-3714-4c7c-8c11-88050a635911","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/addresses/:address_id","description":"<p>Deletes a given users address.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["addresses",":address_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"1a1ee874-7ef5-4dae-b507-918e330d0be5","description":{"content":"<p>(Required) Address ID</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"address_id"}]}},"response":[{"id":"2378d011-dd47-47ab-8e3f-b53b00bc2108","name":"Delete Address Response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id"],"variable":[{"key":"address_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"e1e5fc6b-77e5-4f1d-8d88-2a92a354aeea","name":"API error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/addresses/:address_id","host":["https://finditparts.com/api/v1"],"path":["addresses",":address_id"],"variable":[{"key":"address_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6b8c49fd-3714-4c7c-8c11-88050a635911"}],"id":"14e29ca3-e71e-4588-9654-1d3878c6120c","_postman_id":"14e29ca3-e71e-4588-9654-1d3878c6120c","description":""},{"name":"List Addresses","id":"00c099ff-a578-4fee-acc4-251823e1c816","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/addresses","description":"<p>Returns a list of the users addresses.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["addresses"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d9641709-00cf-4c69-9997-5ff18276bae0","name":"List Addresses Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"addresses\": [\n    {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    }\n  ]\n}"},{"id":"3db631fe-60e6-4d30-9f9f-b54e4b8b4760","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/addresses"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"00c099ff-a578-4fee-acc4-251823e1c816"},{"name":"Create Address","id":"0e6a844d-074b-4bdb-b4d9-66d11b378733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/addresses","description":"<p>Creates an address and returns the new address.</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["addresses"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"908465cc-f226-4f84-b2b1-1e87fe7615f1","name":"Create Address Response: Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"address\": {\n    \"id\": \"<integer>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"country_id\": \"<integer>\",\n    \"country_iso\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"state_id\": \"<integer>\",\n    \"state_name\": \"<string>\",\n    \"city_name\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address_type\": \"commercial\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"is_default\": \"<boolean>\"\n  }\n}"},{"id":"1b9e1db0-b1bd-4ed3-84fb-551b3c0625c0","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"address1\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"city\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"country\": \"<string>\",\n  \"address2\": \"<string>\",\n  \"company\": \"<string>\",\n  \"address_type\": \"commercial\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/addresses"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"0e6a844d-074b-4bdb-b4d9-66d11b378733"}],"id":"4f35676f-5714-492f-a9c3-92ae86b5220d","_postman_id":"4f35676f-5714-492f-a9c3-92ae86b5220d","description":""},{"name":"carts","item":[{"name":"{cart_id}","item":[{"name":"line_items","item":[{"name":"Add Product to Cart","id":"51b72bf7-9cee-4527-b415-e7b939e1b824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"finditparts_product_id\": \"<integer>\",\n  \"variant_id\": \"<integer>\",\n  \"quantity\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/line_items","description":"<p>Returns the Cart Details</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","line_items"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"6118811e-d445-4796-9464-83fc5d998271","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"ed2aa52f-f2e2-42aa-98d0-2c93c0720a7d","name":"Add to Cart Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"finditparts_product_id\": \"<integer>\",\n  \"variant_id\": \"<integer>\",\n  \"quantity\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/line_items","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","line_items"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"9a4a16a4-ded1-4273-abd2-7a0784195296","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"finditparts_product_id\": \"<integer>\",\n  \"variant_id\": \"<integer>\",\n  \"quantity\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/line_items","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","line_items"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"51b72bf7-9cee-4527-b415-e7b939e1b824"},{"name":"Change Cart Line Items","id":"a3e9fcbc-beea-494d-aa79-1e730752c6c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"line_items_attributes\": [\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/line_items","description":"<p>Updates the Line Items and returns the Cart Details</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","line_items"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"8a9dbf23-dc71-476b-aef5-fd694ceb4314","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"f1d7499d-b3e4-4301-82eb-3c370c473544","name":"Add to Cart Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"line_items_attributes\": [\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/line_items","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","line_items"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"e8046d3d-7144-408e-9e10-739c69c24f04","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"line_items_attributes\": [\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"quantity\": \"<integer>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/line_items","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","line_items"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"a3e9fcbc-beea-494d-aa79-1e730752c6c6"}],"id":"c5b34848-cdcb-4d7f-9677-be479d959f6b","_postman_id":"c5b34848-cdcb-4d7f-9677-be479d959f6b","description":""},{"name":"shipping_methods","item":[{"name":"Get Shipping Methods","id":"8568d351-0518-4fe8-b7cf-c2a2d4475286","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","description":"<p>Returns the available shipping methods for the cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","shipping_methods"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"fd56a11e-f3af-4e6d-8d66-2c9084e7196b","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"ce9d77a6-3290-4667-8bf3-9d33ee31537c","name":"Cart Shipping Methods Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_methods"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"shipping_methods\": [\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    },\n    {\n      \"id\": \"<integer>\",\n      \"label\": \"<string>\",\n      \"amount\": \"<float>\",\n      \"identifier\": \"<string>\",\n      \"currency\": \"<string>\",\n      \"carrier_type\": \"ups\",\n      \"detail\": \"<string>\",\n      \"days_to_deliver\": \"<integer>\",\n      \"estimated_delivery_date\": \"<string>\",\n      \"available\": \"<boolean>\",\n      \"url\": \"<string>\",\n      \"manufacturer\": \"<string>\"\n    }\n  ],\n  \"errno\": \"<integer>\"\n}"},{"id":"9d04d00a-403d-4f6d-b630-c2a4fc0c264b","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_methods"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"8568d351-0518-4fe8-b7cf-c2a2d4475286"},{"name":"Cart Select Shipping Method","id":"a2c8e916-e24d-4854-9337-6542f8c39ced","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"shipping_method_id\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","description":"<p>Returns the cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","shipping_methods"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"1caff8e8-2e15-4b29-ae5b-510916ef00d6","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"c4bade9c-3796-4e7f-9276-4d947a2cab40","name":"Cart Select Shipping Method Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"shipping_method_id\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_methods"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"9fb11785-a8b3-43ef-bca6-bd464bd8c759","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"shipping_method_id\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_methods","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_methods"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"a2c8e916-e24d-4854-9337-6542f8c39ced"}],"id":"a485a38e-0fdd-49c2-b38a-ec3db2babdf3","_postman_id":"a485a38e-0fdd-49c2-b38a-ec3db2babdf3","description":""},{"name":"shipping_address","item":[{"name":"Set Shipping Address","id":"23b539a1-945f-4915-90e7-96d2c8185883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/shipping_address","description":"<p>Sets the Cart shipping address and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","shipping_address"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"d715116d-b96e-4eb0-b476-f0a62fbbecec","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"a8b29401-4dd0-40ca-ab1b-0f2e46fe345e","name":"Cart Shipping Address Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_address","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_address"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"dd2e0fe6-6334-4877-830c-7187edb371d6","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/shipping_address","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","shipping_address"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"23b539a1-945f-4915-90e7-96d2c8185883"}],"id":"1cde3754-7b81-43ee-b30b-30f68901a08a","_postman_id":"1cde3754-7b81-43ee-b30b-30f68901a08a","description":""},{"name":"billing_address","item":[{"name":"Set Billing Address","id":"de2d6e06-04f4-48d9-af97-ec7a1cee38a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/billing_address","description":"<p>Sets the Cart billing address and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","billing_address"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"c20c433d-8e34-4440-9634-8e25479bd759","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"888604b6-4209-49e5-a707-a8535def9fc2","name":"Cart Billing Address Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/billing_address","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","billing_address"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"3521bf36-8941-4d3d-8ba5-bed894f4c81f","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"address_id\": \"<integer>\",\n  \"address\": {\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"zipcode\": \"<string>\",\n    \"country\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"company\": \"<string>\",\n    \"address_type\": \"residential\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/billing_address","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","billing_address"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"de2d6e06-04f4-48d9-af97-ec7a1cee38a0"}],"id":"3b3f8493-01ab-425c-99ef-c1851fd5cd6c","_postman_id":"3b3f8493-01ab-425c-99ef-c1851fd5cd6c","description":""},{"name":"coupon","item":[{"name":"Set Cart Coupon","id":"cd718285-7ecb-431f-abe9-b181e276b424","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"coupon_code\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/coupon","description":"<p>Applies a coupon to the Cart and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","coupon"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"ab0fb93b-0a60-4c82-b0ff-aa0708025da7","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"4b7183f4-b5ca-4a46-bb6e-3ba6c242eca6","name":"Cart Coupon Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"coupon_code\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/coupon","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","coupon"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"f053bda0-ad30-44eb-b0bd-b675c07501c1","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"coupon_code\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/coupon","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","coupon"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"cd718285-7ecb-431f-abe9-b181e276b424"}],"id":"b71ce00a-3c06-43f1-b76d-cd271b03f9f5","_postman_id":"b71ce00a-3c06-43f1-b76d-cd271b03f9f5","description":""},{"name":"po_number","item":[{"name":"Set Cart PO Number","id":"d2d7a6da-87ea-43d3-bcbc-f260327c9f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"po_number\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/po_number","description":"<p>Applies a PO number to the Order and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","po_number"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"76e4e03d-efa5-44ee-86a6-4c9a50679ec9","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"5b089157-1a16-4670-bb44-8535ced33fa8","name":"Cart PO Number Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"po_number\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/po_number","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","po_number"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"0167072a-224d-4e3d-ab7f-2c2431734d9f","name":"API error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"po_number\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/po_number","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","po_number"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"d2d7a6da-87ea-43d3-bcbc-f260327c9f79"}],"id":"6366d828-d44a-4cbf-b1ab-04d3837af7ab","_postman_id":"6366d828-d44a-4cbf-b1ab-04d3837af7ab","description":""},{"name":"complete_with_credit_card","item":[{"name":"Places the Order with a Credit Card","id":"9f946cda-e71b-4fc8-9ff3-652c1ef68af5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"payment_method_nonce\": \"<string>\",\n  \"device_data\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_credit_card","description":"<p>Places the Order with a credit card as the payment method and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","complete_with_credit_card"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"2e2e57a7-e7aa-441b-85bb-94e4709f7cfa","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"2ee620b9-b3d6-4302-bc02-6bb36808799e","name":"Cart Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"payment_method_nonce\": \"<string>\",\n  \"device_data\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_credit_card","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","complete_with_credit_card"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"9c7e9276-18a3-4d58-9043-090e857b7b23","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"payment_method_nonce\": \"<string>\",\n  \"device_data\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_credit_card","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","complete_with_credit_card"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"9f946cda-e71b-4fc8-9ff3-652c1ef68af5"}],"id":"d7fc5204-0355-4c7b-97be-978bf87804b5","_postman_id":"d7fc5204-0355-4c7b-97be-978bf87804b5","description":""},{"name":"complete_with_corporate_billing","item":[{"name":"Places the Order with a Corporate Billing","id":"cff8a9c7-337e-44f5-af20-099a4e810dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"test\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_corporate_billing","description":"<p>Places the Order with corporate billing (if available) as the payment method and returns the Cart</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id","complete_with_corporate_billing"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"325aaefb-6460-425e-80ba-24f8427d48bc","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"7cfe0c4e-9336-4f40-b652-2c99459318df","name":"Cart Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"test\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_corporate_billing","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","complete_with_corporate_billing"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"9f6cda68-6d51-403a-ba92-b722b0f96e6c","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"test\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id/complete_with_corporate_billing","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id","complete_with_corporate_billing"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"cff8a9c7-337e-44f5-af20-099a4e810dbb"}],"id":"0a8b3ecb-33b0-42f4-ac4a-43aa8f4ae00c","_postman_id":"0a8b3ecb-33b0-42f4-ac4a-43aa8f4ae00c","description":""},{"name":"Cart Details","id":"e1062201-bfa5-4c83-94e1-8e5709f867f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/carts/:cart_id","description":"<p>Returns the Cart Details</p>\n<p>Requires an user specific JWT in the Authorization header or a cart <code>token</code> parameter.</p>\n","urlObject":{"path":["carts",":cart_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"ad642f75-c972-40cb-a593-0d3af43ac9eb","description":{"content":"<p>(Required) Cart ID (string)</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"cart_id"}]}},"response":[{"id":"d3b0e56c-2fb3-457f-b74d-7fc08de2aefa","name":"Cart Details Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id"],"variable":[{"key":"cart_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"delivered\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"a4b44883-f90d-4911-a3ce-58a5ceb6731b","name":"API error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://finditparts.com/api/v1/carts/:cart_id","host":["https://finditparts.com/api/v1"],"path":["carts",":cart_id"],"variable":[{"key":"cart_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"e1062201-bfa5-4c83-94e1-8e5709f867f5"}],"id":"4466136b-e436-436c-ba9a-641b657d1655","_postman_id":"4466136b-e436-436c-ba9a-641b657d1655","description":""},{"name":"Create new Cart","id":"d217f7e2-eb80-4710-96c2-2bd12361db6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://finditparts.com/api/v1/carts","description":"<p>Creates a new Cart (draft Order).</p>\n<p>Requires a user specific JWT in the Authorization header.</p>\n","urlObject":{"path":["carts"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5dd6b387-62c6-4e56-b12f-2c0124ac7cca","name":"Create Cart Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/carts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"cart\": {\n    \"id\": \"<integer>\",\n    \"number\": \"<string>\",\n    \"state\": \"pending\",\n    \"total\": \"<float>\",\n    \"item_total\": \"<float>\",\n    \"line_items\": [\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      },\n      {\n        \"id\": \"<integer>\",\n        \"quantity\": \"<integer>\",\n        \"amount\": \"<float>\",\n        \"manufacturer\": \"<string>\",\n        \"part_number\": \"<string>\",\n        \"pack_qty\": \"<number>\",\n        \"variant\": {\n          \"variant_id\": \"<integer>\",\n          \"price\": \"<string>\",\n          \"quantity\": \"<integer>\",\n          \"pack_quantity\": \"<integer>\",\n          \"minimum\": \"<integer>\",\n          \"verified\": \"<boolean>\",\n          \"location\": \"<string>\",\n          \"timezone\": \"<string>\",\n          \"cutoff\": \"<dateTime>\",\n          \"past_cutoff\": \"<boolean>\",\n          \"core_price\": \"<string>\",\n          \"estimated_business_days_to_ship\": \"<integer>\",\n          \"estimated_ship_date\": \"<dateTime>\",\n          \"estimated_days_to_deliver\": \"<integer>\",\n          \"estimated_delivery_date_ground\": \"<dateTime>\",\n          \"account_price\": \"<string>\",\n          \"minimum_order\": \"<string>\",\n          \"minimum_order_fee\": \"<string>\"\n        },\n        \"product_images\": [\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          },\n          {\n            \"product\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"large\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"small\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            },\n            \"medium\": {\n              \"jpeg\": \"<string>\",\n              \"webp\": \"<string>\"\n            }\n          }\n        ],\n        \"variant_id\": \"<integer>\",\n        \"product_id\": \"<integer>\"\n      }\n    ],\n    \"adjustments\": [\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      },\n      {\n        \"label\": \"<string>\",\n        \"amount\": \"<float>\"\n      }\n    ],\n    \"billing_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"commercial\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_address\": {\n      \"id\": \"<integer>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"country_id\": \"<integer>\",\n      \"country_iso\": \"<string>\",\n      \"address1\": \"<string>\",\n      \"state_id\": \"<integer>\",\n      \"state_name\": \"<string>\",\n      \"city_name\": \"<string>\",\n      \"zipcode\": \"<string>\",\n      \"phone\": \"<string>\",\n      \"address_type\": \"residential\",\n      \"address2\": \"<string>\",\n      \"company\": \"<string>\",\n      \"is_default\": \"<boolean>\"\n    },\n    \"shipping_method_name\": \"<string>\",\n    \"shipping_method_id\": \"<integer>\",\n    \"po_number\": \"<string>\",\n    \"shipments\": [\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      },\n      {\n        \"carrier\": \"<string>\",\n        \"is_shipped\": \"<boolean>\",\n        \"is_delivered\": \"<boolean>\",\n        \"has_tracking\": \"<boolean>\",\n        \"shipping_method\": \"<string>\",\n        \"tracking_number\": \"<string>\"\n      }\n    ],\n    \"cart_token\": \"<string>\",\n    \"corporate_billing_available\": \"<boolean>\"\n  }\n}"},{"id":"308ebb2d-e512-437a-a743-6584904cd6b9","name":"API error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://finditparts.com/api/v1/carts"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errno\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"d217f7e2-eb80-4710-96c2-2bd12361db6b"}],"id":"2b34c645-d0eb-4e58-8957-4ffdc5728a2f","_postman_id":"2b34c645-d0eb-4e58-8957-4ffdc5728a2f","description":""}],"variable":[{"key":"baseUrl","value":"https://finditparts.com/api/v1"}]}