{"info":{"_postman_id":"3bf4b099-ab2a-44b7-bb67-1951b768bdf6","name":"FinditParts Reseller API","description":"<html><head></head><body><p>The FinditParts Reseller API allows you to search parts inventory, create new FinditParts user accounts, 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>Create Reseller Customer Session</code> method for more information).</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>Please contact us at <a href=\"mailto:api-support@finditparts.com\">api-support@finditparts.com</a> and describe your intended use case for the FinditParts API and we will issue API JWT credentials associated with your FinditParts account.  Once these credentials are issued, you can access them in your <a href=\"https://www.finditparts.com/account/reseller_clients\">FinditParts account</a> and use as described below in 'JWT Basics'.</p>\n<h1 id=\"authorization\">Authorization</h1>\n<h2 id=\"jwt-basics\">JWT Basics</h2>\n<p>Use the <code>Authorization</code> header in the format <code>Bearer &lt;JWT TOKEN&gt;</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 basic signed JWT with the above is sufficient to authorize a request to the <code>Product Search</code> API or the <code>Get Reseller Customer Session</code> API but the <code>Create Reseller Customer Session</code> has some additional requirements below.</p>\n<p>Example basic 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; \"eyJhbGciOiJIUIJ9.ey7ImludGVudCI6IlVTRVJfU0VUVVAiLCJyZWRpcm.Ot4lyrVNG5IdUk...\"\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 eyJhbGciOiJIUIJ9.ey7ImludGVudCI6IlVTRVJfU0VUVVAiLCJyZWRpcm.Ot4lyrVNG5IdUk...\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</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Authorization","slug":"authorization"}],"owner":"12847304","collectionId":"3bf4b099-ab2a-44b7-bb67-1951b768bdf6","publishedId":"TVReeWcY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"CF3201"},"publishDate":"2020-10-02T22:03:16.000Z"},"item":[{"name":"reseller customer sessions","item":[{"name":"Create Reseller Customer Session","id":"bcbb31c0-45f5-4ca9-a1bc-8b3b1fc086bb","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"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: { firstname: '...', lastname: '...', email: '...', company: '...' }, // 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; \"eyJhbGciOiJIUIJ9.ey7ImludGVudCI6IlVTRVJfU0VUVVAiLCJyZWRpcm.Ot4lyrVNG5IdUk...\"\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    redirect_url: \"https://acmecorp.com/finditparts_setup_success\", // Optional to redirect upon completion, otherwise will postMessage\n  }\n}, 'RESELLER_CLIENT_SECRET')\n=&gt; \"eyJhbGciOiJIUIJ9.ey7ImludGVudCI6IlVTRVJfU0VUVVAiLCJyZWRpcm.Ot4lyrVNG5IdUk...\"\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><p>/</p>\n","urlObject":{"path":["reseller_customer_sessions"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"075ef70e-85d9-4415-ad94-d599f1ed7916","name":"Create Reseller Customer Session - User Setup Session","originalRequest":{"method":"POST","header":[],"url":"https://finditparts.com/api/v1/reseller_customer_sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 17:48:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"4f699ce0f3d0275cc8efdec0ccb1f2f4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_fip_session_build=BAh7BkkiD3Nlc3Npb25faWQGOgZFVEkiJTJiZDc1ZTY4NjkwZjk4MjJjMDZjMTBiMjYzYjg4OWRkBjsAVA%3D%3D--071ca8b126ae91e4d809b342b54223fa6bd2e2c2; domain=.finditparts.com; path=/; secure; HttpOnly; SameSite=Lax"},{"key":"X-Request-Id","value":"dedae746-b971-4641-a1bd-432972561d35"},{"key":"X-Runtime","value":"0.151565"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"reseller_customer_session\": {\n        \"id\": \"6e11078e-dcbc-4e2f-a24f-07afeb197b64\",\n        \"intent\": \"user_setup\",\n        \"resolution\": \"pending\",\n        \"order\": null,\n        \"expires_at\": \"2020-10-02T18:48:16.000-07:00\",\n        \"customer_reference\": \"USER_123\",\n        \"redirect_url\": \"https://www.finditparts.com/reseller_customer_sessions/6e11078e-dcbc-4e2f-a24f-07afeb197b64\"\n    }\n}"},{"id":"a81c63ae-6b27-4fdf-936e-e80d0395808f","name":"Create Reseller Customer Session - Start New Order","originalRequest":{"method":"POST","header":[],"url":"https://finditparts.com/api/v1/reseller_customer_sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 18:19:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"69eaab9e6e1f27f351a7e4e1084812bb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_fip_session_build=BAh7BkkiD3Nlc3Npb25faWQGOgZFVEkiJWY3NGMyYWI1MWM2NTljMWNkMzY3NTAxMmI3YmE2Nzg3BjsAVA%3D%3D--1aacb602be6c16c6cff061dde2adf366cef2dcd6; domain=.finditparts.com; path=/; secure; HttpOnly; SameSite=Lax"},{"key":"X-Request-Id","value":"cd930b30-3e54-49cc-b4f6-8b3248e536de"},{"key":"X-Runtime","value":"1.498765"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"reseller_customer_session\": {\n        \"id\": \"44708915-0ca9-4086-b826-83a562e30f94\",\n        \"intent\": \"new_order\",\n        \"resolution\": \"pending\",\n        \"order\": {\n            \"number\": \"F101658518\",\n            \"state\": \"in_progress\",\n            \"total\": \"4.87\",\n            \"line_items\": [\n                {\n                    \"quantity\": 1,\n                    \"amount\": \"1.92\",\n                    \"manufacturer\": \"HALDEX\",\n                    \"part_number\": \"10035\"\n                }\n            ],\n            \"adjustments\": [\n                {\n                    \"label\": \"Shipping (FedEx Ground)\",\n                    \"amount\": \"0.0\"\n                },\n                {\n                    \"label\": \"Handling Charge\",\n                    \"amount\": \"2.95\"\n                },\n                {\n                    \"label\": \"Tax (CA)\",\n                    \"amount\": \"0.0\"\n                }\n            ]\n        },\n        \"expires_at\": \"2020-10-02T19:19:38.000-07:00\",\n        \"customer_reference\": \"USER_123\",\n        \"redirect_url\": \"https://www.finditparts.com/reseller_customer_sessions/44708915-0ca9-4086-b826-83a562e30f94\"\n    }\n}"}],"_postman_id":"bcbb31c0-45f5-4ca9-a1bc-8b3b1fc086bb"},{"name":"Get Reseller Customer Session","id":"0fdbba36-0430-46af-aaa5-4e6f8a34f30f","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://finditparts.com/api/v1/reseller_customer_sessions/:reseller_customer_session_id","description":"<p>Returns status and details of a session.</p>\n","urlObject":{"path":["reseller_customer_sessions",":reseller_customer_session_id"],"host":["https://finditparts.com/api/v1"],"query":[],"variable":[{"id":"16568a60-1194-452d-9708-718c0dcab2ba","description":{"content":"<p>(Required) Reseller Customer Session ID returned from create</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"reseller_customer_session_id"}]}},"response":[{"id":"5799c887-6563-4d9d-b0ba-4b73d015e610","name":"Get Reseller Customer Session - User Setup Session Success","originalRequest":{"method":"GET","header":[],"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","value":"6e11078e-dcbc-4e2f-a24f-07afeb197b64","type":"string","description":"(Required) Reseller Customer Session ID returned from create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 18:02:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"a36212500be8d5422094bbe69982c124\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f70c21a3-4711-4ecd-9d5c-35918d9f7e7d"},{"key":"X-Runtime","value":"0.030019"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"reseller_customer_session\": {\n        \"id\": \"6e11078e-dcbc-4e2f-a24f-07afeb197b64\",\n        \"intent\": \"user_setup\",\n        \"resolution\": \"success\",\n        \"order\": null,\n        \"expires_at\": \"2020-10-02T11:01:53.000-07:00\",\n        \"customer_reference\": \"USER_123\",\n        \"redirect_url\": \"https://www.finditparts.com/reseller_customer_sessions/6e11078e-dcbc-4e2f-a24f-07afeb197b64\"\n    }\n}"},{"id":"c7eabd0c-9554-47d1-a08f-45971ef00f59","name":"Get Reseller Customer Session - New Order Success","originalRequest":{"method":"GET","header":[],"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","value":"44708915-0ca9-4086-b826-83a562e30f94","type":"string","description":"(Required) Reseller Customer Session ID returned from create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 18:28:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e784e216b5483d214493e4d5e050528d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3697b4ba-b615-48de-992c-e0bde0bc4635"},{"key":"X-Runtime","value":"0.043751"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"reseller_customer_session\": {\n        \"id\": \"44708915-0ca9-4086-b826-83a562e30f94\",\n        \"intent\": \"new_order\",\n        \"resolution\": \"success\",\n        \"order\": {\n            \"number\": \"F101658518\",\n            \"state\": \"new\",\n            \"total\": \"4.87\",\n            \"line_items\": [\n                {\n                    \"quantity\": 1,\n                    \"amount\": \"1.92\",\n                    \"manufacturer\": \"HALDEX\",\n                    \"part_number\": \"10035\"\n                }\n            ],\n            \"adjustments\": [\n                {\n                    \"label\": \"Shipping (FedEx Ground)\",\n                    \"amount\": \"0.0\"\n                },\n                {\n                    \"label\": \"Handling Charge\",\n                    \"amount\": \"2.95\"\n                },\n                {\n                    \"label\": \"Tax (CA)\",\n                    \"amount\": \"0.0\"\n                }\n            ]\n        },\n        \"expires_at\": \"2020-10-02T11:20:39.000-07:00\",\n        \"customer_reference\": \"USER_123\",\n        \"redirect_url\": \"https://www.finditparts.com/reseller_customer_sessions/44708915-0ca9-4086-b826-83a562e30f94\"\n    }\n}"}],"_postman_id":"0fdbba36-0430-46af-aaa5-4e6f8a34f30f"}],"id":"8836a3f7-0aeb-43cd-9859-119992845783","_postman_id":"8836a3f7-0aeb-43cd-9859-119992845783","description":""},{"name":"Product Search","id":"39c91781-d86b-45a7-a46e-0583b636b159","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://finditparts.com/api/v1/products?part_number=<string>&query=<string>","description":"<p>Returns a list of products matching part number provided. One of <code>part_number</code> or <code>query</code> parameter is required.</p>\n","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>"}],"variable":[]}},"response":[{"id":"2dafe2a9-a21e-4279-b637-735ea93faf38","name":"Product Search - by generic query","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://finditparts.com/api/v1/products?query=haldex valve sensor","host":["https://finditparts.com/api/v1"],"path":["products"],"query":[{"key":"part_number","value":"790-94025","description":"Exact part number to match","disabled":true},{"key":"query","value":"haldex valve sensor","description":"General part search query"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 17:46:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"63e7e016c724bcd5158d81f1244c5b17\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"047bf583-572b-4770-98f5-f7b25d2d9894"},{"key":"X-Runtime","value":"1.306850"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"products\": [\n        {\n            \"finditparts_product_id\": 363820,\n            \"manufacturer\": \"HALDEX\",\n            \"part_number\": \"90554664\",\n            \"short_description\": \"VALVE SENSOR EDL ARF\",\n            \"variants\": [\n                {\n                    \"variant_id\": 3547080,\n                    \"price\": \"126.94\",\n                    \"quantity\": 30,\n                    \"verified\": false,\n                    \"location\": \"MO\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 14787172,\n                    \"price\": \"196.95\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"MI\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 20022534,\n                    \"price\": \"151.27\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"TN\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 24406844,\n                    \"price\": \"208.0\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 29467529,\n                    \"price\": \"239.89\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 39361649,\n                    \"price\": \"176.35\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"OK\",\n                    \"cutoff\": \"11:00am PST\"\n                }\n            ],\n            \"url\": \"https://www.finditparts.com/products/363820/haldex-90554664\",\n            \"image\": \"https://db73q1dut0rlp.cloudfront.net/eyJ3aWR0aCI6MzUsImhlaWdodCI6MzUsImZpdCI6ImNvbnRhaW4iLCJrZXkiOiJhc3NldHMvaW1hZ2VzLzI1NzI2MTcvdGh1bWJuYWlsLzk5Yzk4NjNjNjZjOGI1MGVjZTljZGZmNzg3NzhhMWYzLmpwZyIsInZlcnNpb24iOjJ9.jpg?s=ad539386ad1d13475bf931bb758dc6b0d55cb9c17b2df2dfe6997d84f6c5d55e\"\n        },\n        {\n            \"finditparts_product_id\": 8711027,\n            \"manufacturer\": \"HALDEX\",\n            \"part_number\": \"AQ965002\",\n            \"short_description\": \"KIT ITCM-A7\",\n            \"variants\": [\n                {\n                    \"variant_id\": 23615110,\n                    \"price\": \"718.63\",\n                    \"quantity\": 144,\n                    \"verified\": false,\n                    \"location\": \"MO\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 34700137,\n                    \"price\": \"1114.98\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"MI\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 34809847,\n                    \"price\": \"831.18\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"TN\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 35664745,\n                    \"price\": \"997.49\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 39361832,\n                    \"price\": \"998.43\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"OK\",\n                    \"cutoff\": \"11:00am PST\"\n                }\n            ],\n            \"url\": \"https://www.finditparts.com/products/8711027/haldex-aq965002\",\n            \"image\": \"https://db73q1dut0rlp.cloudfront.net/eyJ3aWR0aCI6MzUsImhlaWdodCI6MzUsImZpdCI6ImNvbnRhaW4iLCJrZXkiOiJhc3NldHMvaW1hZ2VzLzI1NzI4ODgvdGh1bWJuYWlsL2UwZTI3M2E4NWQ5ODFlZThjZWQ0ZTM0MWQxNGRjNDk5LmpwZyIsInZlcnNpb24iOjJ9.jpg?s=089f177cf02b500cd2e8240cbe6fb893ac84f2554c2491e0ec0cfc26bf11066b\"\n        },\n        {\n            \"finditparts_product_id\": 364372,\n            \"manufacturer\": \"HALDEX\",\n            \"part_number\": \"AQ963014\",\n            \"short_description\": \"KIT-ABS PLCS2M FFRL\",\n            \"variants\": [\n                {\n                    \"variant_id\": 3547228,\n                    \"price\": \"818.58\",\n                    \"quantity\": 18,\n                    \"verified\": false,\n                    \"location\": \"MO\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 22117113,\n                    \"price\": \"946.79\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"TN\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 24832368,\n                    \"price\": \"1223.6\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 36931784,\n                    \"price\": \"1230.08\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 39361829,\n                    \"price\": \"1137.31\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"OK\",\n                    \"cutoff\": \"11:00am PST\"\n                }\n            ],\n            \"url\": \"https://www.finditparts.com/products/364372/haldex-aq963014\",\n            \"image\": \"https://db73q1dut0rlp.cloudfront.net/eyJ3aWR0aCI6MzUsImhlaWdodCI6MzUsImZpdCI6ImNvbnRhaW4iLCJrZXkiOiJhc3NldHMvaW1hZ2VzLzI1NzI4ODUvdGh1bWJuYWlsLzMyM2MzMjk1NTViNDBjNmJlOTg0ZmQ3MjM1MmM2YWIwLmpwZyIsInZlcnNpb24iOjJ9.jpg?s=e67bb240d2e9a5504072c04e6be989225492ebe1ccae50dca86dcab876ca0cb9\"\n        }\n    ]\n}"},{"id":"8d0dce71-060f-4555-98b9-1b95d1224ebf","name":"Product Search - by part number","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://finditparts.com/api/v1/products?part_number=790-94025","host":["https://finditparts.com/api/v1"],"path":["products"],"query":[{"key":"part_number","value":"790-94025","description":"Exact part number to match"},{"key":"query","value":"<string>","description":"General part search query","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 02 Oct 2020 17:45:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"bbcbca2dc46edfb6ab17915ae8424dd4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7f8c6ae6-9ebd-49b1-88f0-afb758b2f9bd"},{"key":"X-Runtime","value":"0.201580"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"errno\": 0,\n    \"products\": [\n        {\n            \"finditparts_product_id\": 363694,\n            \"manufacturer\": \"HALDEX\",\n            \"part_number\": \"790-94025\",\n            \"short_description\": \"Disc brk unit DB22LT\",\n            \"variants\": [\n                {\n                    \"variant_id\": 23615080,\n                    \"price\": \"1005.37\",\n                    \"quantity\": 12,\n                    \"verified\": false,\n                    \"location\": \"MO\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 24406807,\n                    \"price\": \"1399.69\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 34700094,\n                    \"price\": \"1559.88\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"MI\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 36694169,\n                    \"price\": \"1162.82\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"TN\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 36940061,\n                    \"price\": \"965.58\",\n                    \"quantity\": 0,\n                    \"verified\": false,\n                    \"location\": \"CA\",\n                    \"cutoff\": \"11:00am PST\"\n                },\n                {\n                    \"variant_id\": 39361619,\n                    \"price\": \"1396.82\",\n                    \"quantity\": 99,\n                    \"verified\": false,\n                    \"location\": \"OK\",\n                    \"cutoff\": \"11:00am PST\"\n                }\n            ],\n            \"url\": \"https://www.finditparts.com/products/363694/haldex-790-94025\",\n            \"image\": \"https://db73q1dut0rlp.cloudfront.net/eyJ3aWR0aCI6MzUsImhlaWdodCI6MzUsImZpdCI6ImNvbnRhaW4iLCJrZXkiOiJhc3NldHMvaW1hZ2VzLzI1NzI1NzQvdGh1bWJuYWlsL2RiZDVmMTYzYTNhYjI0MGY4Nzc0MDNmN2FiNTVkYTE3LmpwZyIsInZlcnNpb24iOjJ9.jpg?s=9c5287eff09f919b87838067140801b75c90b836a7399421e2d6ca4004ac86ed\"\n        }\n    ]\n}\n"}],"_postman_id":"39c91781-d86b-45a7-a46e-0583b636b159"}],"variable":[{"id":"baseUrl","key":"baseUrl","value":"https://finditparts.com/api/v1","type":"string"}]}