{"info":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","description":"<html><head></head><body><h2 id=\"product-data-portal-environments\">Product Data Portal Environments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Base URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dev</td>\n<td><a href=\"https://dev.backend.api.data.wheelpros.com/dev\">https://dev.backend.api.data.wheelpros.com/dev</a></td>\n</tr>\n<tr>\n<td>qa</td>\n<td><a href=\"https://qa.backend.api.data.wheelpros.com/qa\">https://qa.backend.api.data.wheelpros.com/qa</a></td>\n</tr>\n<tr>\n<td>stage</td>\n<td><a href=\"https://stage.backend.api.data.wheelpros.com/stage\">https://stage.backend.api.data.wheelpros.com/stage</a></td>\n</tr>\n<tr>\n<td>prod</td>\n<td><a href=\"https://backend.api.data.wheelpros.com/prod\">https://backend.api.data.wheelpros.com/prod</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> We recommend using a product data portal staging environment for all kinds of testing and development purposes.</p>\n<h2 id=\"steps-need-to-be-followed-before-using-the-order-apis\">Steps need to be followed before using the Order APIs</h2>\n<ul>\n<li>Register the <strong>user</strong> account in <a href=\"https://data.wheelpros.com\">Product Data Portal</a></li>\n<li>Once the admin approves the account the one-time password will be sent to the registered email address </li>\n<li>Update the password in the Product Data Portal Portal</li>\n<li>Request WheelPros to access Order Related APIs ( By Default there is no access will be available for Order APIs )</li>\n<li>Update Postman environment variables with the Product Data Portal Username and password</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>To use the APIs in this collection the requests needs to be signed by using an AWS Signature Version 4 Standard. This will provide the RBAC ( Role-Based Access Control ) to access the APIs.</p>\n<p>In the process of signing the request, it is required to have IAM Credentials ( AccessKey, SecretKey, SessionToken ), AWS Region ( '<code>us-west-2</code>' ) and Service ( '<code>execute-api</code>' ).</p>\n<p>In the postman Collection itself, there is a request ( 'Authentication' ) to get the temporary IAM credentials from the portal. These credentials are short lived and have access to certain APIs, please refer to the API Documentation for more information.</p>\n<p><strong>Note:</strong> In Postman everything is going to be handled by the scripts we wrote in the collection.</p>\n<p><strong>Error Message Insufficient access permissions</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\": \"User: arn:aws:sts::***:assumed-role/***/CognitoIdentityCredentials is not authorized to perform: execute-api:Invoke on resource: arn:aws:execute-api:us-west-2:********0831:slygwos7kf/stage/POST/orders/* with an explicit deny\"\n}\n</code></pre><p><strong>Note:</strong> This denotes the username and password is valid but the user does not have sufficient permissions to access order-related APIs. Please request wheelpros for access.</p>\n<h2 id=\"request-signing-samples\">Request Signing Samples</h2>\n<p><strong><em>Python Code Snippet - Without Using SDK</em></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-py\">import sys, os, base64, datetime, hashlib, hmac \nimport requests # pip install requests\n# Key derivation functions. See:\n    # http://docs.aws.amazon.com/general/latest/gr/signature-v4-examples.html#signature-v4-examples-python\ndef sign(key, msg):\n    return hmac.new(key, msg.encode(\"utf-8\"), hashlib.sha256).digest()\n    \ndef getSignatureKey(key, date_stamp, regionName, serviceName):\n    kDate = sign(('AWS4' + key).encode('utf-8'), date_stamp)\n    kRegion = sign(kDate, regionName)\n    kService = sign(kRegion, serviceName)\n    kSigning = sign(kService, 'aws4_request')\n    return kSigning\n\ndef handler(event, content):\n    # ************* REQUEST VALUES *************\n    method = 'POST'\n    service = 'execute-api'\n    host = 'slygwos7kf.execute-api.us-west-2.amazonaws.com'\n    region = 'us-west-2'\n    endpoint = 'https://slygwos7kf.execute-api.us-west-2.amazonaws.com/stage/search/loadFilterData/'\n    # POST requests use a content type header.\n    # the content is JSON.\n    content_type = 'application/x-amz-json-1.0'\n    \n    \n    request_parameters =  '{\"filterType\": \"WHEEL\",\"filters\": {\"filterQuery\": \"\"}}'\n    # Read AWS access key from env. variables or configuration file. Best practice is NOT\n    # to embed credentials in code.\n    access_key = '&lt;AccessKey&gt;'\n    secret_key = '&lt;SecretKey&gt;'\n    session_token = '&lt;SessionToken&gt;'\n    if access_key is None or secret_key is None:\n        print('No access key or secret key is available.')\n        sys.exit()\n    \n    # Create a date for headers and the credential string\n    t = datetime.datetime.utcnow()\n    amz_date = t.strftime('%Y%m%dT%H%M%SZ')\n    date_stamp = t.strftime('%Y%m%d') # Date w/o time, used in credential scope\n    \n    \n    # ************* TASK 1: CREATE A CANONICAL REQUEST *************\n    # http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html\n    \n    # Step 1 is to define the verb (GET, POST, etc.)--already done.\n    \n    # Step 2: Create canonical URI--the part of the URI from domain to query \n    # string (use '/' if no path)\n    canonical_uri = '/stage/search/loadFilterData/'\n    \n    ## Step 3: Create the canonical query string. In this example, request\n    # parameters are passed in the body of the request and the query string\n    # is blank.\n    canonical_querystring = ''\n    \n    # Step 4: Create the canonical headers. Header names must be trimmed\n    # and lowercase, and sorted in code point order from low to high.\n    # Note that there is a trailing \\n.\n    canonical_headers = 'content-type:' + content_type + '\\n' + 'host:' + host + '\\n' + 'x-amz-date:' + amz_date + '\\n' + 'x-amz-security-token:' + session_token + '\\n'\n    \n    # Step 5: Create the list of signed headers. This lists the headers\n    # in the canonical_headers list, delimited with \";\" and in alpha order.\n    # Note: The request can include any headers; canonical_headers and\n    # signed_headers include those that you want to be included in the\n    # hash of the request. \"Host\" and \"x-amz-date\" are always required.\n    signed_headers = 'content-type;host;x-amz-date;x-amz-security-token'\n    \n    # Step 6: Create payload hash. In this example, the payload (body of\n    # the request) contains the request parameters.\n    payload_hash = hashlib.sha256(request_parameters.encode('utf-8')).hexdigest()\n    \n    # Step 7: Combine elements to create canonical request\n    canonical_request = method + '\\n' + canonical_uri + '\\n' + canonical_querystring + '\\n' + canonical_headers + '\\n' + signed_headers + '\\n' + payload_hash\n    print('Canonical String:',canonical_request)\n    \n    # ************* TASK 2: CREATE THE STRING TO SIGN*************\n    # Match the algorithm to the hashing algorithm you use, either SHA-1 or\n    # SHA-256 (recommended)\n    algorithm = 'AWS4-HMAC-SHA256'\n    credential_scope = date_stamp + '/' + region + '/' + service + '/' + 'aws4_request'\n    string_to_sign = algorithm + '\\n' +  amz_date + '\\n' +  credential_scope + '\\n' +  hashlib.sha256(canonical_request.encode('utf-8')).hexdigest()\n    # print(\"signing String:\",string_to_sign);\n    # ************* TASK 3: CALCULATE THE SIGNATURE *************\n    # Create the signing key using the function defined above.\n    signing_key = getSignatureKey(secret_key, date_stamp, region, service)\n    \n    # Sign the string_to_sign using the signing_key\n    signature = hmac.new(signing_key, (string_to_sign).encode('utf-8'), hashlib.sha256).hexdigest()\n    \n    \n    # ************* TASK 4: ADD SIGNING INFORMATION TO THE REQUEST *************\n    # Put the signature information in a header named Authorization.\n    authorization_header = algorithm + ' ' + 'Credential=' + access_key + '/' + credential_scope + ', ' +  'SignedHeaders=' + signed_headers + ', ' + 'Signature=' + signature\n    \n    \n    # header, the headers must be included in the canonical_headers and signed_headers values, as\n    # noted earlier. The order here is not significant.\n    # # Python note: The 'host' header is added automatically by the Python 'requests' library.\n    headers = {'Content-Type':content_type,\n               'X-Amz-Date':amz_date,\n               'Authorization':authorization_header,\n               'X-Amz-Security-Token': session_token\n    }\n    \n    \n    # ************* SEND THE REQUEST *************\n    print('\\nBEGIN REQUEST++++++++++++++++++++++++++++++++++++')\n    print('Request URL = ' + endpoint)\n    \n    r = requests.post(endpoint, data=request_parameters, headers=headers)\n    \n    print('\\nRESPONSE++++++++++++++++++++++++++++++++++++')\n    print('Response code: %d\\n' % r.status_code)\n    print(r.text)\n</code></pre>\n<p>**AWS Docs for Request Signing: ** - <a href=\"https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html\">https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html</a></p>\n<h2 id=\"request-signing-samples-in-other-programming-languages\">Request Signing Samples in other programming languages</h2>\n<p>**Docs for AWS Signature V4: ** <a href=\"https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html\">https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html</a></p>\n<p>**AWS Javascript SDK: ** <a href=\"https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/\">https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/</a></p>\n<p>**AWS Request Signing Example Javascript: ** <a href=\"https://github.com/mhart/aws4\">https://github.com/mhart/aws4</a></p>\n<p>**AWS Request Signing Example for .NET: ** <a href=\"https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Core/Amazon.Runtime/Internal/Auth/AWS4Signer.cs\">https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Core/Amazon.Runtime/Internal/Auth/AWS4Signer.cs</a>  </p>\n<p>**PHP Example for Request Signing: ** <a href=\"https://docs.aws.amazon.com/aws-sdk-php/v3/api/class-Aws.Signature.SignatureV4.html#_signRequest\">https://docs.aws.amazon.com/aws-sdk-php/v3/api/class-Aws.Signature.SignatureV4.html#_signRequest</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"14787489","collectionId":"8b07e93e-fdb5-4a0f-87fb-f880060df456","publishedId":"Tz5wVZn2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-08-26T13:41:23.000Z"},"item":[{"name":"Pricing","item":[{"name":"Get product pricing information","id":"d9a9476c-517a-4048-a5d9-bfa8fefed6bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://stage.backend.api.data.wheelpros.com/stage/pricing/api/v1/:sku?company=<string>&customer=<string>&currency=USD&priceType=msrp&effectiveDate=today_date","description":"<p>Get product pricing information for a specific SKU</p>\n<h2 id=\"query-params\">Query Params</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Description</th>\n<th>Default Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company</td>\n<td>company (sales org)</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>customer number.</td>\n<td>NA</td>\n<td>conditional (  Required when searching for NIP price type )</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>currency to return price. <strong>Enum:</strong> <code>USD</code>  <code>AUD</code>  <code>EUR</code>  <code>CAD</code> <code>GBP</code></td>\n<td>USD</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priceType</td>\n<td>price type to return <strong>Enum:</strong> <code>msrp</code>  <code>nip</code>  <code>map</code></td>\n<td>msrp</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectiveDate</td>\n<td>Effective date when price is valid in format like 2017-07-21</td>\n<td>today_date</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["pricing","api","v1",":sku"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[{"description":{"content":"<p>(Required) company (sales org)</p>\n","type":"text/plain"},"key":"company","value":"<string>"},{"description":{"content":"<p>customer number. Required when searching for NIP price type</p>\n","type":"text/plain"},"key":"customer","value":"<string>"},{"description":{"content":"<p>currency to return price</p>\n","type":"text/plain"},"key":"currency","value":"USD"},{"description":{"content":"<p>price type to return</p>\n","type":"text/plain"},"key":"priceType","value":"msrp"},{"description":{"content":"<p>Effective date when price is valid in format like 2017-07-21</p>\n","type":"text/plain"},"key":"effectiveDate","value":"today_date"}],"variable":[{"description":{"content":"<p>(Required) sku to return price</p>\n","type":"text/plain"},"type":"any","value":"WSKEY","key":"sku"}]}},"response":[{"id":"f2b804b4-5d3a-4156-8dad-a12f1cde75a5","name":"200 response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/pricing/api/v1/:sku?company=<string>&customer=<string>&currency=USD&priceType=msrp&effectiveDate=today_date","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["pricing","api","v1",":sku"],"query":[{"key":"company","value":"<string>"},{"key":"customer","value":"<string>"},{"key":"currency","value":"USD"},{"key":"priceType","value":"msrp"},{"key":"effectiveDate","value":"today_date"}],"variable":[{"key":"sku"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"sku\": \"SU12390909\",\n \"currency\": \"USD\",\n \"msrp\": 1200,\n \"nip\": 900,\n \"map\": 800\n}"}],"_postman_id":"d9a9476c-517a-4048-a5d9-bfa8fefed6bf"},{"name":"Search product pricing information","id":"851f8405-52bc-472f-9cb5-5fe10cee4961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"sku\": [\n            \"<string>\",\n            \"<string>\"\n        ],\n        \"company\": \"<string>\",\n        \"customer\": \"<string>\",\n        \"currency\": \"USD\",\n        \"effectiveDate\": \"today_date\"\n    },\n    \"limit\": \"<number>\",\n    \"priceType\": [\n        \"msrp\"\n    ]\n}"},"url":"https://stage.backend.api.data.wheelpros.com/stage/pricing/api/v1/search","description":"<p>Search product pricing information for a multiple SKUs using filters</p>\n<h2 id=\"filter-details\">Filter Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Description</th>\n<th>Defautlt Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company</td>\n<td>company (sales org)</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>List of SKUs</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n<tr>\n<td>customer</td>\n<td>customer number.</td>\n<td>false</td>\n<td>conditional ( Required when searching for NIP price type )</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>currency to return price. <strong>Enum:</strong> <code>USD</code> <code>GBP</code> <code>AUD</code> <code>EUR</code> <code>CAD</code></td>\n<td>USD</td>\n<td>false</td>\n</tr>\n<tr>\n<td>effectiveDate</td>\n<td>Effective date when price is valid in format like 2017-07-21</td>\n<td>today_date</td>\n<td>false</td>\n</tr>\n<tr>\n<td>priceType</td>\n<td>price type to return <strong>Enum:</strong> <code>msrp</code> <code>nip</code> <code>map</code></td>\n<td>msrp</td>\n<td>false</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>number</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["pricing","api","v1","search"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[],"variable":[]}},"response":[{"id":"27bb89b2-889b-4313-938e-de60b64ad30b","name":"search response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"sku\": [\n            \"D1234455\",\n            \"T345786\"\n        ],\n        \"company\": \"1000\",\n        \"currency\": \"USD\",\n        \"customer\": \"123456\",\n        \"effectiveDate\": \"2021-12-21\"\n    },\n    \"limit\": 10,\n    \"priceType\": [\n        \"msrp\",\n        \"map\",\n        \"nip\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/pricing/api/v1/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"sku\": \"D1234455\",\n  \"currency\": \"USD\",\n  \"msrp\": 1200,\n  \"nip\": 900,\n  \"map\": 800\n },\n {\n  \"sku\": \"T345786\",\n  \"currency\": \"USD\",\n  \"msrp\": 1200,\n  \"nip\": 900,\n  \"map\": 800\n }\n]"},{"id":"5b40c7dd-b969-4448-9250-2b2ed80d2262","name":"unexpected error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"sku\": [\n            \"D1234455\",\n            \"T345786\"\n        ],\n        \"company\": \"1000\",\n        \"currency\": \"USD\",\n        \"customer\": \"123456\",\n        \"effectiveDate\": \"2021-12-21\"\n    },\n    \"limit\": 10,\n    \"priceType\": [\n        \"msrp\",\n        \"map\",\n        \"nip\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/pricing/api/v1/search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"code\": 13706209,\n \"message\": \"officia\"\n}"}],"_postman_id":"851f8405-52bc-472f-9cb5-5fe10cee4961"}],"id":"8602330e-9e67-44e6-a3c7-f01b99ddf060","_postman_id":"8602330e-9e67-44e6-a3c7-f01b99ddf060","description":"","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}}},{"name":"Orders","item":[{"name":"Create EDI Order","id":"db2227bc-c5a8-4f45-a6c7-14a210abfb95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"purchaseOrderNumber\": \"4500000465\",\n    \"warehouseCode\": \"1001\",\n    \"orderNotes\": \"test order notes\",\n    \"fulfillableOnly\": false,\n    \"items\": [\n        {\n            \"partNumber\": \"D43620829235\",\n            \"quantity\": 4\n        },\n        {\n            \"partNumber\": \"WSKEY\",\n            \"quantity\": 1\n        }\n    ],\n    \"shipping\": {\n        \"addressCode\": \"6018\",\n        \"method\": \"F2\",\n        \"shipToName\": \"Nirmalmahesh\",\n        \"address1\": \"Address line 1\",\n        \"address2\": \"Address line 2\",\n        \"city\": \"City name\",\n        \"stateOrProvinceCode\": \"TX\",\n        \"postalCode\": \"122345\",\n        \"countryCode\": \"US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderCreate?orderSource=EDI","description":"<h2 id=\"create-order-api\">Create Order API</h2>\n<p>By using this API we can place orders into the Wheelpros SAP System.</p>\n<p><strong>Note:</strong> To access any order-related APIs the user needs to have special permission.</p>\n<h2 id=\"pre-request-validation\">Pre Request Validation</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n<th>Validation</th>\n<th>isRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purchaseOrderNumber</td>\n<td>A customer PO number for all sales orders. purchaseOrderNumber needs to be unique for every order</td>\n<td>Max of 35 Characters</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>warehouseCode</td>\n<td>If the desired location of the stock is known, the Wheel Pros plant ID can be transmitted here.</td>\n<td>4 digit value</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>orderNotes</td>\n<td>Free form text.</td>\n<td>Max of 132 Characters</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>fulfillableOnly</td>\n<td>This flag will ensure the stock availability before placing the order. Needs to be a boolean value ( true or false )</td>\n<td>Max of 4 Characters</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>partNumber</td>\n<td>SKU or Wheelpros Product ID</td>\n<td>Max of 18 Characters</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>The required order quantity for the specific product</td>\n<td>The quantity should be a valid positive number</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>addressCode</td>\n<td>Customer location code</td>\n<td>Max of 10 Characters</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>method</td>\n<td>Shipping method</td>\n<td><p>A two character value indicating the shipping carrier service</p><div>Allowed Values:</div><div><strong>F1</strong> (Fedex Overnight)</div><div><strong>F2</strong> (Fedex 2nd Day Air)</div><div><strong>FG</strong> (Fedex Ground)</div><div><strong>FE</strong> (Fedex Economy) </div><div><strong>FR</strong> (Freight) </div><div><strong>PU</strong> (Purolator (Canada)) </div></td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>shipToName</td>\n<td>Ship to name</td>\n<td>Max of 40 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address  it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>Address line one</td>\n<td>Max of 40 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>Address line two</td>\n<td>Max of 40 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Shipping city</td>\n<td>Max of 40 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>stateOrProvinceCode</td>\n<td>Shipping state code</td>\n<td>Max of 3 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Shipping postal code</td>\n<td>For US Countries acceptable formats : 12345-1234 or 12345. For non-US Countries acceptable format: 5-10 alphanumeric Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>Shipping country code</td>\n<td>Max of 3 Characters</td>\n<td>CONDITIONAL - If there is an explicit shipping address it will overwrite the <code>addressCode</code> shipping address</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"query-parameters\">Query Parameters</h2>\n<p><strong>Note:</strong> The orderSource is used to differentiate the ECOM order from the EDI order. If the orderSource is not found in the request the request will be considered as the ECOM order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Parameters</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderSource</td>\n<td>To place the EDI order it is required to pass orderSource query parameter with the value <strong>EDI</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"status-codes\">Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The Request has been processed successfully</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Business Exception or Request Validation failed</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Request Timeout</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Sample Error Response</strong></p>\n<p><strong>Status Code:</strong> 400</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"error\": {\n        \"code\": \"INVALID_INPUT\",\n        \"message\": \"Not a valid input for the field shipping_method. Valid Inputs - FG - FedEx Ground, FE - Feddex Express, F2 - Fedex 2 day, F1 - Fedex 1 day\",\n        \"type\": \"BusinessException\"\n    }\n}\n</code></pre><p><strong>Error Codes:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>INVALID_INPUT</td>\n<td>This denotes the request failed in the validation part itself.</td>\n</tr>\n<tr>\n<td>REQUIRED_PARAM_NOT_FOUND</td>\n<td>This denotes there is a missing required parameter in the request.</td>\n</tr>\n<tr>\n<td>SAP_ERROR</td>\n<td>This denotes the error that occurred in the SAP system. The message attribute in the error response will give the array of errors got from the SAP. <strong>Eg:</strong> Quantity not available for particular SKU, Duplicate Purchase order number. <strong>Note:</strong> If the ErrorCode is SAP_ERROR the error messages are going to be an array.</td>\n</tr>\n<tr>\n<td>GENERIC_ERROR</td>\n<td>This denotes there is an unexpected server error that occurred.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["orders","salesOrderCreate"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[{"key":"orderSource","value":"EDI"}],"variable":[]}},"response":[{"id":"28a988f9-137c-4903-8a6a-8c6341017044","name":"Create EDI Order - Invalid Address Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Auth sinature","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"purchaseOrderNumber\": \"4500000192\",\n    \"warehouseCode\": \"1001\",\n    \"orderNotes\": \"test order notes\",\n    \"fulfillableOnly\": true,\n    \"items\": [\n        {\n            \"partNumber\": \"D43620829235\",\n            \"quantity\": 4\n        },\n        {\n            \"partNumber\": \"WSKEY\",\n            \"quantity\": 1\n        }\n    ],\n    \"shipping\": {\n        \"addressCode\": \"9999\",\n        \"method\": \"F1\",\n        \"shipToName\": \"Nirmalmahesh\",\n        \"address1\": \"Address line 1\",\n        \"address2\": \"Address line 2\",\n        \"city\": \"City name\",\n        \"stateOrProvinceCode\": \"TX\",\n        \"postalCode\": \"122345\",\n        \"countryCode\": \"US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderCreate?orderSource=EDI","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderCreate"],"query":[{"key":"orderSource","value":"EDI"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SAP_ERROR\",\n        \"message\": [\n            \"Ordering party/Bill-to-party WP12345 is not found in SAP\"\n        ],\n        \"type\": \"BusinessException\"\n    }\n}"},{"id":"69af519d-d00e-4ffd-bd65-86d38ad1bc45","name":"Create EDI Order - Successful order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Auth sinature","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"purchaseOrderNumber\": \"4500000193\",\n    \"warehouseCode\": \"1001\",\n    \"orderNotes\": \"test order notes\",\n    \"fulfillableOnly\": true,\n    \"items\": [\n        {\n            \"partNumber\": \"D43620829235\",\n            \"quantity\": 4\n        },\n        {\n            \"partNumber\": \"WSKEY\",\n            \"quantity\": 1\n        }\n    ],\n    \"shipping\": {\n        \"addressCode\": \"1390\",\n        \"method\": \"F1\",\n        \"shipToName\": \"Nirmalmahesh\",\n        \"address1\": \"Address line 1\",\n        \"address2\": \"Address line 2\",\n        \"city\": \"City name\",\n        \"stateOrProvinceCode\": \"TX\",\n        \"postalCode\": \"122345\",\n        \"countryCode\": \"US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderCreate?orderSource=EDI","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderCreate"],"query":[{"key":"orderSource","value":"EDI"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"message\": \"success\",\n        \"supplierOrderNumber\": \"0005825587\",\n        \"deliveryDateTime\": \"2021-03-23T15:20:52.252Z\"\n    }\n}"},{"id":"7b27bc19-0adc-4ecf-b145-0db032876fe8","name":"Create EDI Order - Missing Required Param","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Auth signature","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"purchaseOrderNumber\": \"4500000192\",\n    \"warehouseCode\": \"1001\",\n    \"orderNotes\": \"test order notes\",\n    \"fulfillableOnly\": true,\n    \"items\": [\n        {\n            \"partNumber\": \"D43620829235\",\n            \"quantity\": 4\n        },\n        {\n            \"partNumber\": \"WSKEY\",\n            \"quantity\": 1\n        }\n    ],\n    \"shipping\": {\n        \"addressCode\": \"1390\",\n        \"method\": \"F1\",\n        \"shipToName\": \"Nirmalmahesh\",\n        \"address1\": \"Address line 1\",\n        \"address2\": \"Address line 2\",\n        \"city\": \"City name\",\n        \"stateOrProvinceCode\": \"TX\",\n        \"postalCode\": \"122345\",\n        \"countryCode\": \"US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderCreate?orderSource=EDI","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderCreate"],"query":[{"key":"orderSource","value":"EDI"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"REQUIRED_PARAM_NOT_FOUND\",\n        \"message\": \"countryCode not found in request.\",\n        \"type\": \"BusinessException\"\n    }\n}"},{"id":"9734e79a-1634-4dbf-84bb-63dfb91494cf","name":"Create EDI Order - Invalid Quantity","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Auth signature","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"purchaseOrderNumber\": \"4500000192\",\n    \"warehouseCode\": \"1001\",\n    \"orderNotes\": \"test order notes\",\n    \"fulfillableOnly\": true,\n    \"items\": [\n        {\n            \"partNumber\": \"D43620829235\",\n            \"quantity\": 4\n        },\n        {\n            \"partNumber\": \"WSKEY\",\n            \"quantity\": 10000\n        }\n    ],\n    \"shipping\": {\n        \"addressCode\": \"1390\",\n        \"method\": \"F1\",\n        \"shipToName\": \"Nirmalmahesh\",\n        \"address1\": \"Address line 1\",\n        \"address2\": \"Address line 2\",\n        \"city\": \"City name\",\n        \"stateOrProvinceCode\": \"TX\",\n        \"postalCode\": \"122345\",\n        \"countryCode\": \"US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderCreate?orderSource=EDI","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderCreate"],"query":[{"key":"orderSource","value":"EDI"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SAP_ERROR\",\n        \"message\": [\n            \"Unable to fulfill order for material WSKEY and quantity 10000.000\"\n        ],\n        \"type\": \"BusinessException\"\n    }\n}"}],"_postman_id":"db2227bc-c5a8-4f45-a6c7-14a210abfb95"},{"name":"Order Tracking","id":"ca54883f-241e-4f81-9f27-4105e9fc4690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://backend.api.data.wheelpros.com/prod/orders/salesOrderTracking?salesOrderNumber=1234567","description":"<h2 id=\"order-tracking-api\">Order Tracking API</h2>\n<p>By using the order tracking API we are able to see the status and  tracking information of a purchase order.</p>\n<p>We can get the order status by sending different input.</p>\n<ol>\n<li>Order status by using sales order number</li>\n<li>Order Status by using tracking number</li>\n<li>Order status by using purchase order number ( Requires including <code>locationCode</code> and <code>customerNumber</code> )</li>\n</ol>\n<p><strong>Getting Order status by using salesorder number</strong></p>\n<ul>\n<li>The sales order number is the order number returned by the sales order creation API in the successful order creation. To track the orders based on the sales order number it is required to send the <code>salesOrderNumber</code> in the query params.</li>\n<li>There will be a scenario where one sales order could have multiple tracking data in its payload. To identify the master tracking number use the <code>Mastertrack: true</code> boolean attribute in the response.</li>\n<li>Refer to the examples section to get the sample response structure.</li>\n</ul>\n<p><strong>Getting order Status by using tracking number</strong></p>\n<ul>\n<li>If you know the tracking information we can directly use the tracking number to get the status of the particular tracking number. To track the orders based on the tracking number pass the tracking number in the <code>orderTrackingnum</code> query parameter.</li>\n</ul>\n<p><strong>Getting order status by using purchase order number</strong></p>\n<ul>\n<li>This call requires the following query parameters to be passed: <code>locationcode</code>, <code>customerNumber</code> and <code>purchaseorderNumber</code></li>\n<li>There will be a scenario where one sales order could have multiple tracking data in its payload. To identify the master tracking number use the <code>Mastertrack: true</code> boolean attribute in the response.</li>\n<li>Refer to the examples section to get the sample response structure.</li>\n</ul>\n<p><strong>Note:</strong> To access any order-related APIs the user needs to have special permission.</p>\n<h2 id=\"status-codes\">Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The Request has been processed successfully</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Business Exception or Request Validation failed</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Request Timeout</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Error Codes:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>INVALID_INPUT</td>\n<td>This denotes the request failed in the validation part itself.</td>\n</tr>\n<tr>\n<td>SAP_ERROR</td>\n<td>This denotes the error that occurred in the SAP system. The message attribute in the error response will give the array of errors got from the SAP.</td>\n</tr>\n<tr>\n<td>GENERIC_ERROR</td>\n<td>This denotes there is an unexpected server error that occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response</strong> </p>\n<p>The tracking response contains a JSON object with the following schema definition:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"$schema\": \"http://json-schema.org/draft-04/schema#\",\n\"type\": \"object\",\n\"properties\": {\n    \"status\": {\n        \"type\": \"integer\"\n    },\n    \"response\": {\n        \"type\": \"object\",\n        \"properties\": {\n            \"Salesorders\": {\n                \"type\": \"array\",\n                \"items\": [\n                    {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"Salesorder\": {\n                                \"type\": \"string\"\n                            },\n                            \"Soldtoparty\": {\n                                \"type\": \"string\"\n                            },\n                            \"Soldtopartyname\": {\n                                \"type\": \"string\"\n                            },\n                            \"Purchaseorder\": {\n                                \"type\": \"string\"\n                            },\n                            \"Delivery\": {\n                                \"type\": \"string\"\n                            },\n                            \"Handlingunit\": {\n                                \"type\": \"string\"\n                            },\n                            \"Carrier\": {\n                                \"type\": \"string\"\n                            },\n                            \"Carriername\": {\n                                \"type\": \"string\"\n                            },\n                            \"Service\": {\n                                \"type\": \"string\"\n                            },\n                            \"Servicename\": {\n                                \"type\": \"string\"\n                            },\n                            \"Trackingnum\": {\n                                \"type\": \"string\"\n                            },\n                            \"Mastertrack\": {\n                                \"type\": \"boolean\"\n                            },\n                            \"Shippingcondition\": {\n                                \"type\": \"string\"\n                            },\n                            \"Shippingcondtext\": {\n                                \"type\": \"string\"\n                            },\n                            \"Supplierlocationcode\": {\n                                \"type\": \"string\"\n                            },\n                            \"Supplierlocation\": {\n                                \"type\": \"string\"\n                            }\n                        },\n                        \"required\": [\n                            \"Salesorder\",\n                            \"Soldtoparty\",\n                            \"Soldtopartyname\",\n                            \"Purchaseorder\",\n                            \"Delivery\",\n                            \"Handlingunit\",\n                            \"Carrier\",\n                            \"Carriername\",\n                            \"Service\",\n                            \"Servicename\",\n                            \"Trackingnum\",\n                            \"Mastertrack\",\n                            \"Shippingcondition\",\n                            \"Shippingcondtext\",\n                            \"Supplierlocationcode\",\n                            \"Supplierlocation\"\n                        ]\n                    }\n                ]\n            },\n            \"Trackings\": {\n                \"type\": \"array\",\n                \"items\": [\n                    {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"Trackingnum\": {\n                                \"type\": \"string\"\n                            },\n                            \"TrackingInfo\": {\n                                \"type\": \"array\",\n                                \"items\": [\n                                    {\n                                        \"type\": \"object\",\n                                        \"properties\": {\n                                            \"Trackingnum\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statusdate\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statustime\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statuscode\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statustext\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"City\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Region\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Postalcode\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Country\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Signedby\": {\n                                                \"type\": \"string\"\n                                            }\n                                        },\n                                        \"required\": [\n                                            \"Trackingnum\",\n                                            \"Statusdate\",\n                                            \"Statustime\",\n                                            \"Statuscode\",\n                                            \"Statustext\",\n                                            \"City\",\n                                            \"Region\",\n                                            \"Postalcode\",\n                                            \"Country\",\n                                            \"Signedby\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        },\n                        \"required\": [\n                            \"Trackingnum\",\n                            \"TrackingInfo\"\n                        ]\n                    },\n                    {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"Trackingnum\": {\n                                \"type\": \"string\"\n                            },\n                            \"TrackingInfo\": {\n                                \"type\": \"array\",\n                                \"items\": [\n                                    {\n                                        \"type\": \"object\",\n                                        \"properties\": {\n                                            \"Trackingnum\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statusdate\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statustime\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statuscode\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Statustext\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"City\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Region\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Postalcode\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Country\": {\n                                                \"type\": \"string\"\n                                            },\n                                            \"Signedby\": {\n                                                \"type\": \"string\"\n                                            }\n                                        },\n                                        \"required\": [\n                                            \"Trackingnum\",\n                                            \"Statusdate\",\n                                            \"Statustime\",\n                                            \"Statuscode\",\n                                            \"Statustext\",\n                                            \"City\",\n                                            \"Region\",\n                                            \"Postalcode\",\n                                            \"Country\",\n                                            \"Signedby\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        },\n                        \"required\": [\n                            \"Trackingnum\",\n                            \"TrackingInfo\"\n                        ]\n                    }\n                ]\n            }\n        },\n        \"required\": [\n            \"Salesorders\",\n            \"Trackings\"\n        ]\n    }\n},\n\"required\": [\n    \"status\",\n    \"response\"\n]\n}\n</code></pre><p><br /><br />\nThe payload object can be broken down as follows:</p>\n<ul>\n<li><code>status</code> : This property reflects the HTTP response status</li>\n<li><code>response</code>: This property contains an object with the following properties:<ul>\n<li><code>Salesorders</code>: Contains an array of <code>Sale orders</code> objects</li>\n<li><code>Trackings</code>: Contains an array of <code>tracking data</code> objects</li>\n</ul>\n</li>\n</ul>\n<h3>Sale order object</h3>\n\n<p>The Sale Order object represent the sale data in the Wheelpros systems. There can be multiple sale order objects in a <code>Salesorders</code> property when the purchase has been shipped in multiple packages.</p>\n<table>\n    <thead>\n        <th>Property</th>\n        <th>Description<br /></th>\n    </thead>\n    <tbody>\n    <tr><td>Salesorder</td> <td>The sale order number</td></tr>\n    <tr><td>Soldtoparty</td> <td>The sold to party account number</td></tr>\n    <tr><td>Soldtopartyname</td> <td>The name of the sold to party</td></tr>\n    <tr><td>Purchaseorder</td> <td>The purchase order document number</td></tr>\n    <tr><td>Delivery</td> <td>The delivery number</td></tr>\n    <tr><td>Handlingunit</td> <td>The handling unit id</td></tr>\n    <tr><td>Carrier</td> <td>The shipping company carrier code</td></tr>\n    <tr><td>Carriername</td> <td>The name of the shipping company</td></tr>\n    <tr><td>Service</td> <td>The selected carrier's shipping method</td></tr>\n    <tr><td>Servicename</td> <td>The name of the shipping company</td></tr>\n    <tr><td>Trackingnum</td> <td>The shipment's tracking number - this can be different for the same order when the shipment is broken up into multiple packages</td></tr>\n    <tr><td>Mastertrack</td> <td>This value indicates whether the tracking number in this object is the master tracking number. This is useful when the shipment is broken up into multiple packages</td></tr>\n    <tr><td>Shippingcondition</td> <td>The carriers shipping code</td></tr>\n    <tr><td>Shippingcondtext</td> <td>The carriers shipping code description</td></tr>\n    <tr><td>Supplierlocationcode</td> <td>The suppliers warehouse location code</td></tr>\n    <tr><td>Supplierlocation</td> <td>The supplier's warehouse location</td></tr>\n    </tbody>\n</table>\n\n<p><br /><br /></p>\n<h3>Tracking Data object</h3>\n\n\n<p>The tracking data object holds all information related to tracking. The tracking data object has 2 properties <code>Trackingnum</code>  and <code>TrackingInfo</code>. \n<code>Trackingnum</code> holds the shipments tracking number and <code>TrackingInfo</code> hold an array of <code>shipment updates</code>.\n<br /></p>\n<h3>Shipment Update object</h3>\n\n<table>\n    <thead>\n        <th>Property</th>\n        <th>Description</th>\n    </thead>\n    <tbody>\n    <tr><td>Trackingnum</td> <td>The tracking number the update is associated to</td></tr>\n    <tr><td>Statusdate</td> <td>The status' date stamp</td></tr>\n    <tr><td>Statustime</td> <td>Thestatus' time stamp</td></tr>\n    <tr><td>Statuscode</td> <td>The carrier's status code for the update</td></tr>\n    <tr><td>Statustext</td> <td>The parsed value of the carriers status for the update</td></tr>\n    <tr><td>City</td> <td>The city where the update event took place</td></tr>\n    <tr><td>Region</td> <td>The region where the update event took place</td></tr>\n    <tr><td>Postalcode</td> <td>The postal code where the update event took place</td></tr>\n    <tr><td>Country</td> <td>The country where the update event took place</td></tr>\n    <tr><td>Signedby</td> <td>A value which denotes a signer / receiving entity</td></tr>\n    </tbody>\n</table>\n<br /><br />\n\n<h3>WheelPros status code matrix</h3>\n<br /><br />\n<table>\n    <tbody>\n        <tr><p><strong>Orders for Delivery</strong></p></tr>\n        <tr>\n            <table>\n                <thead><th>Code</th><th>Status</th><th>Definition<br /></th></thead>\n                <tbody>\n                    <tr>\n                        <td>ZN</td>\n                        <td>PROCESSING</td>\n                        <td>New - Created, but still has a delivery block.</td>\n                    </tr>\n                    <tr>\n                        <td>ZP</td>\n                        <td>PROCESSING</td>\n                        <td>Processing - Delivery block has been removed.</td>\n                    </tr>\n                    <tr>\n                        <td>ZR</td>\n                        <td>PROCESSING</td>\n                        <td>Ready - Delivery has been created, but not yet issued.</td>\n                    </tr>\n                    <tr>\n                        <td>ZU</td>\n                        <td>SHIPPED</td>\n                        <td>Updated - Delivery has been issued (PGI), but there is no tracking number.</td>\n                    </tr>\n                    <tr>\n                        <td>ZC</td>\n                        <td>DELIVERED</td>\n                        <td>Complete - Tracking number exists and order is fully invoiced, but there is no tracking information from the carrier - Local carriers.</td>\n                    </tr>\n                    <tr>\n                        <td>DL</td>\n                        <td>DELIVERED</td>\n                        <td>Complete - Tracking number exists and order is fully invoiced. The delivery is finalized.</td>\n                    </tr>\n                    <tr>\n                        <td>ZX</td> \n                        <td>CANCELLED</td> \n                        <td>The order was cancelled.</td>\n                    </tr>\n                </tbody>\n            </table>\n        </tr>\n    </tbody>\n</table>\n<br />\n<div>\n<p> * Any status not listed on this matrix comes directly from the carrier and can vary depending on the the carrier company. </p>\n</div>\n<br />\n<br />\n\n<table>\n            <tbody>\n                <tr>\n                    <p><strong>Orders for Pickup</strong></p>\n                </tr>\n                <tr>\n                    <table>\n                        <thead>\n                            <th>Code</th>\n                            <th>Status</th>\n                            <th>Definition<br /></th>\n                        </thead>\n                        <tbody>\n                            <tr>\n                                <td>ZN</td> \n                                <td>PROCESSING</td> \n                                <td>New - Created, but still has a delivery block.</td>\n                            </tr>\n                            <tr>\n                                <td>ZP</td> \n                                <td>PROCESSING</td> \n                                <td>Processing - Delivery block has been removed.</td>\n                            </tr>\n                            <tr>\n                                <td>ZR</td> \n                                <td>READY FOR PICKUP</td> \n                                <td>Ready - Delivery has been created, but there is no tracking number.</td>\n                            </tr>\n                            <tr>\n                                <td>ZU</td> \n                                <td>PICKED UP</td> \n                                <td>Updated - Delivery has been issued (PGI), but there is no tracking number.</td>\n                            </tr>\n                            <tr>\n                                <td>ZC</td> \n                                <td>DELIVERED</td> \n                                <td>Complete - Tracking number exists and order is fully invoiced, but there is no tracking information.</td>\n                            </tr>\n                            <tr>\n                                <td>ZX</td> \n                                <td>CANCELLED</td> \n                                <td>The order was cancelled.</td>\n                            </tr>\n                        </tbody>\n                    </table>\n                </tr>\n            </tbody>\n        </table>\n        <br />\n        <br />\n<table>\n            <tbody>\n                <tr>\n                    <p><strong>Returns</strong></p>\n                </tr>\n                <tr>\n                    <table>\n                        <thead>\n                            <th>Code</th>\n                            <th>Status</th>\n                            <th>Definition<br /></th>\n                        </thead>\n                        <tbody>\n                            <tr>\n                                <td>ZI</td> \n                                <td>PROCESSING</td> \n                                <td>Pending approval - Created, but not yet processed.</td>\n                            </tr>\n                            <tr>\n                                <td>ZA</td> \n                                <td>APPROVED</td> \n                                <td>In Process.</td>\n                            </tr>\n                            <tr>\n                                <td>ZD</td> \n                                <td>DELIVERED</td> \n                                <td>Delivered and credited.</td>\n                            </tr>\n                            <tr>\n                                <td>ZX</td> \n                                <td>REJECTED</td> \n                                <td>The return was Rejected.</td>\n                            </tr>\n                        </tbody>\n                    </table>\n                </tr>\n            </tbody>\n        </table>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"protocol":"https","path":["prod","orders","salesOrderTracking"],"host":["backend","api","data","wheelpros","com"],"query":[{"disabled":true,"key":"orderTrackingnum","value":"1234567"},{"disabled":true,"key":"customerNumber","value":"1234567"},{"disabled":true,"key":"locationCode","value":"1234"},{"disabled":true,"key":"purchaseorderNumber","value":"1234567"},{"key":"salesOrderNumber","value":"1234567"}],"variable":[]}},"response":[{"id":"036e1f12-565b-4a8e-9212-dfe64fa04e37","name":"Order Tracking - Tracking With Salesorder Number","originalRequest":{"method":"GET","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?salesOrderNumber=0004603114","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"0004603114"},{"key":"orderTrackingnum","value":"776434062972","disabled":true},{"key":"customerNumber","value":"1902215","disabled":true},{"key":"locationCode","value":"1700","disabled":true},{"key":"purchaseorderNumber","value":"4711935349","disabled":true}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"Salesorders\": [\n            {\n                \"Salesorder\": \"12342343114\",\n                \"Soldtoparty\": \"0001002440\",\n                \"Soldtopartyname\": \"AT1700 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4711935349\",\n                \"Delivery\": \"0086732830\",\n                \"Handlingunit\": \"0004094771\",\n                \"Carrier\": \"FDXG\",\n                \"Carriername\": \"FedEx\",\n                \"Service\": \"FEDEX_GROUND\",\n                \"Servicename\": \"FedEx Ground\",\n                \"Trackingnum\": \"908434062972\",\n                \"Mastertrack\": true,\n                \"Shippingcondition\": \"FD\",\n                \"Shippingcondtext\": \"DSC-TIRE FED-EX COLL\",\n                \"Supplierlocationcode\": \"1011\",\n                \"Supplierlocation\": \"LOS ANGELES\"\n            },\n            {\n                \"Salesorder\": \"12342343114\",\n                \"Soldtoparty\": \"0001002440\",\n                \"Soldtopartyname\": \"AT1700 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4711935349\",\n                \"Delivery\": \"0086732830\",\n                \"Handlingunit\": \"0004094772\",\n                \"Carrier\": \"FDXG\",\n                \"Carriername\": \"FedEx\",\n                \"Service\": \"FEDEX_GROUND\",\n                \"Servicename\": \"FedEx Ground\",\n                \"Trackingnum\": \"776434063177\",\n                \"Mastertrack\": false,\n                \"Shippingcondition\": \"FD\",\n                \"Shippingcondtext\": \"DSC-TIRE FED-EX COLL\",\n                \"Supplierlocationcode\": \"1011\",\n                \"Supplierlocation\": \"LOS ANGELES\"\n            }\n        ],\n        \"Trackings\": [\n            {\n                \"Trackingnum\": \"908434062972\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"10:23:38\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Delivered\",\n                        \"City\": \"Thousand Oaks\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91360\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"FLORESS\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:39:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"On FedEx vehicle for delivery\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:25:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"At local FedEx facility\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"04:37:59\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Departed FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"00:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"21:18:05\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Left FedEx origin facility\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"18:30:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"17:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Picked up\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"908434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"16:05:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Shipment information sent to FedEx\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"90620\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            },\n            {\n                \"Trackingnum\": \"776434063177\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"10:23:38\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Delivered\",\n                        \"City\": \"Thousand Oaks\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91360\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"FLORESS\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:39:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"On FedEx vehicle for delivery\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:22:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"At local FedEx facility\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"04:37:59\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Departed FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"00:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"21:18:05\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Left FedEx origin facility\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"18:30:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"17:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Picked up\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"16:05:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Shipment information sent to FedEx\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"90620\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"058242aa-414d-46ca-9834-4a4d8a682b18","name":"Order Tracking - Invalid Tracking Number","originalRequest":{"method":"GET","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?orderTrackingnum=invalidTrackingNumber","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"0005825615","disabled":true},{"key":"orderTrackingnum","value":null,"disabled":true},{"key":"orderTrackingnum","value":"invalidTrackingNumber"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SAP_ERROR\",\n        \"message\": [\n            {\n                \"status\": \"ERROR\",\n                \"message\": \"No tracking details found in SAP\"\n            }\n        ],\n        \"type\": \"BusinessException\"\n    }\n}"},{"id":"2659ee91-340a-4593-8d3d-cba40acaed85","name":"Order Tracking - Tracking With Purchase Order Number - In Progress Status - ZP","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Auth signature","type":"text"},{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?salesOrderNumber=6882453&customerNumber=0001105662","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"6882453"},{"key":"orderTrackingnum","value":null,"disabled":true},{"key":"locationCode","value":"1353","disabled":true},{"key":"customerNumber","value":"0001105662"},{"key":"purchaseorderNumber","value":"4716097462","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"Salesorders\": [\n            {\n                \"Salesorder\": \"0005825615\",\n                \"Soldtoparty\": \"0001001618\",\n                \"Soldtopartyname\": \"AT1390 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4500000192\",\n                \"Delivery\": \"\",\n                \"Handlingunit\": \"\",\n                \"Carrier\": \"\",\n                \"Carriername\": \"\",\n                \"Service\": \"\",\n                \"Servicename\": \"\",\n                \"Trackingnum\": \"\",\n                \"Mastertrack\": false,\n                \"Shippingcondition\": \"F1\",\n                \"Shippingcondtext\": \"FED-EX NDA 1ST OVNIT\",\n                \"Supplierlocationcode\": \"1001\",\n                \"Supplierlocation\": \"DENVER\"\n            }\n        ],\n        \"Trackings\": [\n            {\n                \"Trackingnum\": \"\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"\",\n                        \"Statusdate\": \"03/23/2021\",\n                        \"Statustime\": \"01:38:32\",\n                        \"Statuscode\": \"ZP\",\n                        \"Statustext\": \"Sales Order 0005825615 is with delivery block Z1 - EDI Block\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"\",\n                        \"Country\": \"\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"9cc657a9-868b-41fc-b422-70acf8247174","name":"Order Tracking - Tracking with Tracking Number","originalRequest":{"method":"GET","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?orderTrackingnum=776434062123","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"0005825615","disabled":true},{"key":"customerNumber","value":"1902321","disabled":true},{"key":"locationCode","value":"1700","disabled":true},{"key":"purchaseorderNumber","value":"4711935888","disabled":true},{"key":"orderTrackingnum","value":"776434062123"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"Salesorders\": [\n            {\n                \"Salesorder\": \"0004603871\",\n                \"Soldtoparty\": \"0001002440\",\n                \"Soldtopartyname\": \"AT1700 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4711935349\",\n                \"Delivery\": \"0086732830\",\n                \"Handlingunit\": \"0004094771\",\n                \"Carrier\": \"FDXG\",\n                \"Carriername\": \"FedEx\",\n                \"Service\": \"FEDEX_GROUND\",\n                \"Servicename\": \"FedEx Ground\",\n                \"Trackingnum\": \"776434062123\",\n                \"Mastertrack\": true,\n                \"Shippingcondition\": \"FD\",\n                \"Shippingcondtext\": \"DSC-TIRE FED-EX COLL\",\n                \"Supplierlocationcode\": \"1011\",\n                \"Supplierlocation\": \"LOS ANGELES\"\n            }\n        ],\n        \"Trackings\": [\n            {\n                \"Trackingnum\": \"776434062123\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"10:23:38\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Delivered\",\n                        \"City\": \"Thousand Oaks\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91360\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"FLORESS\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:39:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"On FedEx vehicle for delivery\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:25:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"At local FedEx facility\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"04:37:59\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Departed FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"00:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"21:18:05\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Left FedEx origin facility\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"18:30:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"17:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Picked up\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062123\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"16:05:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Shipment information sent to FedEx\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"90620\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"b315a21f-548b-44f3-b4fb-67a17c8db6e3","name":"Order Tracking - Tracking With Purchase Order Number - Delivered Status","originalRequest":{"method":"GET","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?locationCode=1700&purchaseorderNumber=4711935908&customerNumber=1902888","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"0005825615","disabled":true},{"key":"orderTrackingnum","value":null,"disabled":true},{"key":"locationCode","value":"1700"},{"key":"purchaseorderNumber","value":"4711935908"},{"key":"customerNumber","value":"1902888"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"Salesorders\": [\n            {\n                \"Salesorder\": \"0004603114\",\n                \"Soldtoparty\": \"0001002440\",\n                \"Soldtopartyname\": \"AT1700 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4711935908\",\n                \"Delivery\": \"0086732830\",\n                \"Handlingunit\": \"0004094771\",\n                \"Carrier\": \"FDXG\",\n                \"Carriername\": \"FedEx\",\n                \"Service\": \"FEDEX_GROUND\",\n                \"Servicename\": \"FedEx Ground\",\n                \"Trackingnum\": \"776434062972\",\n                \"Mastertrack\": true,\n                \"Shippingcondition\": \"FD\",\n                \"Shippingcondtext\": \"DSC-TIRE FED-EX COLL\",\n                \"Supplierlocationcode\": \"1011\",\n                \"Supplierlocation\": \"LOS ANGELES\"\n            },\n            {\n                \"Salesorder\": \"0004603114\",\n                \"Soldtoparty\": \"0001002440\",\n                \"Soldtopartyname\": \"AT1700 - AMERICA'S TIRE\",\n                \"Purchaseorder\": \"4711935908\",\n                \"Delivery\": \"0086732830\",\n                \"Handlingunit\": \"0004094772\",\n                \"Carrier\": \"FDXG\",\n                \"Carriername\": \"FedEx\",\n                \"Service\": \"FEDEX_GROUND\",\n                \"Servicename\": \"FedEx Ground\",\n                \"Trackingnum\": \"776434063177\",\n                \"Mastertrack\": false,\n                \"Shippingcondition\": \"FD\",\n                \"Shippingcondtext\": \"DSC-TIRE FED-EX COLL\",\n                \"Supplierlocationcode\": \"1011\",\n                \"Supplierlocation\": \"LOS ANGELES\"\n            }\n        ],\n        \"Trackings\": [\n            {\n                \"Trackingnum\": \"776434062972\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"10:23:38\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Delivered\",\n                        \"City\": \"Thousand Oaks\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91360\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"FLORESS\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:39:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"On FedEx vehicle for delivery\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:25:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"At local FedEx facility\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"04:37:59\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Departed FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"00:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"21:18:05\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Left FedEx origin facility\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"18:30:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"17:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Picked up\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434062972\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"16:05:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Shipment information sent to FedEx\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"90620\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            },\n            {\n                \"Trackingnum\": \"776434063177\",\n                \"TrackingInfo\": [\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"10:23:38\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Delivered\",\n                        \"City\": \"Thousand Oaks\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91360\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"FLORESS\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:39:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"On FedEx vehicle for delivery\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"07:22:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"At local FedEx facility\",\n                        \"City\": \"VENTURA\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"93003\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"04:37:59\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Departed FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/02/2019\",\n                        \"Statustime\": \"00:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"CITY OF INDUSTRY\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"91789\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"21:18:05\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Left FedEx origin facility\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"18:30:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Arrived at FedEx location\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"17:45:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Picked up\",\n                        \"City\": \"ANAHEIM\",\n                        \"Region\": \"CA\",\n                        \"Postalcode\": \"92801\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    },\n                    {\n                        \"Trackingnum\": \"776434063177\",\n                        \"Statusdate\": \"10/01/2019\",\n                        \"Statustime\": \"16:05:00\",\n                        \"Statuscode\": \"DL\",\n                        \"Statustext\": \"Shipment information sent to FedEx\",\n                        \"City\": \"\",\n                        \"Region\": \"\",\n                        \"Postalcode\": \"90620\",\n                        \"Country\": \"US\",\n                        \"Signedby\": \"\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"c8363cad-9788-4eb1-b05e-94da68ec0ad7","name":"Order Tracking - Missing Required Params","originalRequest":{"method":"GET","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"Auth signature","type":"text"}],"url":{"raw":"https://stage.backend.api.data.wheelpros.com/stage/orders/salesOrderTracking?locationCode=1353&purchaseorderNumber=4716097462","host":["https://stage.backend.api.data.wheelpros.com/stage"],"path":["orders","salesOrderTracking"],"query":[{"key":"salesOrderNumber","value":"0005825615","disabled":true},{"key":"orderTrackingnum","value":null,"disabled":true},{"key":"locationCode","value":"1353"},{"key":"purchaseorderNumber","value":"4716097462"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SAP_ERROR\",\n        \"message\": [\n            {\n                \"status\": \"ERROR\",\n                \"message\": \"Customer Number is missing in service input along with Purchase order\"\n            }\n        ],\n        \"type\": \"BusinessException\"\n    }\n}"}],"_postman_id":"ca54883f-241e-4f81-9f27-4105e9fc4690"}],"id":"7b50c5d7-db23-4ddf-9e92-75f0ad0736af","_postman_id":"7b50c5d7-db23-4ddf-9e92-75f0ad0736af","description":"","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}}},{"name":"Inventory","item":[{"name":"Real-Time Inventory","id":"e9ce5d52-62d5-42db-9dd0-1c37689d2e5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [\n        \"US\",\n        \"AU\"\n    ],\n    \"skus\": [\n        \"000000000000000015\",\n        \"W1916STB\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/getInventoryData","description":"<h1 id=\"realtime-inventory-api\">Realtime Inventory API</h1>\n<p>By using a real time inventory API we are able to get the real time stock availability of an product/SKU.</p>\n<p><strong>Sample Request body</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [\n        \"US\"\n    ],\n    \"skus\": [\n        \"000000000000000015\",\n        \"W1916STB\"\n    ]\n}\n\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n<th>isRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>request_id</td>\n<td>The unique identifier of a request can be anything. Eg: UUID</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>Based on the country code issued here the warehouse will be included in the response. For example, if we give the country code as <code>US</code> only US-based warehoused will be included in the response. <code>Valid Inputs -&gt; US, CA, AU, GB, BE</code>. Note: If no value specified in the array it will consider all the warehouses.</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>SKU</td>\n<td>The SKU/partNumber is a unique id for a product. Note: If you send the invalid SKU in the array that will be excluded by the API. The response will not contain the invalid SKU reference.</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> To access any order-related APIs the user needs to have special permission.</p>\n<h2 id=\"sample-response-body-structure\">Sample Response body structure</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"status\": 200,\n        \"response\": {\n            \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n            \"skus\": [\n                {\n                    \"sku\": \"000000000000001316\",\n                    \"warehouses\": [\n                        {\n                            \"warehouse_id\": \"1038\",\n                            \"zip\": \"90620\",\n                            \"qty\": 16,\n                            \"country_code\": \"US\",\n                            \"in_transit\": 30,\n                            \"capped\": false\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n\n</code></pre><h2 id=\"response-body-field-definition\">Response body field definition</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>The status of the response</td>\n</tr>\n<tr>\n<td>response</td>\n<td>An object containing the <code>response</code> payload</td>\n</tr>\n<tr>\n<td>request_id</td>\n<td>A unique value associated to the <code>request</code></td>\n</tr>\n<tr>\n<td>skus</td>\n<td>An array of <code>sku</code> objects</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>The material sku value</td>\n</tr>\n<tr>\n<td>warehouses</td>\n<td>An array of <code>warehouse</code> objects</td>\n</tr>\n<tr>\n<td>warehouse_id</td>\n<td>The warehouse ID where the sku is referenced.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>The ZIP code where the warehouse resides</td>\n</tr>\n<tr>\n<td>qty</td>\n<td>Denotes the available to promise inventory available to order for the given warehouse</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>The code of the country where the warehouse resides</td>\n</tr>\n<tr>\n<td>in_transit</td>\n<td>Denotes the <strong>in transit</strong> inventory to the given warehouse , available to order at a future date</td>\n</tr>\n<tr>\n<td>capped</td>\n<td>This field indicates <strong>YES</strong> if the <code>qty</code> value is capped by Global limit quantity , <strong>NO</strong> if the <code>qty</code> value is below the Global limit quantity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"status-codes\">Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The Request has been processed successfully</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Business Exception or Request Validation failed</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Request Timeout</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-codes\">Error Codes:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>INVALID_INPUT</td>\n<td>This denotes the request failed in the validation part itself.</td>\n</tr>\n<tr>\n<td>SAP_ERROR</td>\n<td>This denotes the error that occurred in the SAP system. The message attribute in the error response will give the array of errors got from the SAP.</td>\n</tr>\n<tr>\n<td>GENERIC_ERROR</td>\n<td>This denotes there is an unexpected server error that occurred.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["orders","getInventoryData"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[],"variable":[]}},"response":[{"id":"20f2a339-2387-461c-8faa-498e2bbd774a","name":"Real-Time Inventory - With Multiple Country Codes","originalRequest":{"method":"POST","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [\n        \"US\",\n        \"AU\"\n    ],\n    \"skus\": [\n        \"000000000000000015\",\n        \"W1916STB\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/getInventoryData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n        \"skus\": [\n            {\n                \"sku\": \"000000000000000015\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1071\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"5001\",\n                        \"zip\": \"4007\",\n                        \"qty\": 0,\n                        \"country_code\": \"AU\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            },\n            {\n                \"sku\": \"W1916STB\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1001\",\n                        \"zip\": \"80238\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1002\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1003\",\n                        \"zip\": \"77043\",\n                        \"qty\": 469,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1004\",\n                        \"zip\": \"64150\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1005\",\n                        \"zip\": \"70062\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1006\",\n                        \"zip\": \"85034\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1007\",\n                        \"zip\": \"73160\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1008\",\n                        \"zip\": \"95758\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1009\",\n                        \"zip\": \"78219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1011\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1013\",\n                        \"zip\": \"98424\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1014\",\n                        \"zip\": \"30044\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1015\",\n                        \"zip\": \"60124\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1016\",\n                        \"zip\": \"32822\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1018\",\n                        \"zip\": \"33023\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1019\",\n                        \"zip\": \"44224\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1020\",\n                        \"zip\": \"45011\",\n                        \"qty\": 297,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1021\",\n                        \"zip\": \"28214\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1022\",\n                        \"zip\": \"08512\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1024\",\n                        \"zip\": \"37072\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1025\",\n                        \"zip\": \"84104\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1026\",\n                        \"zip\": \"06042\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1028\",\n                        \"zip\": \"55428\",\n                        \"qty\": 287,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1029\",\n                        \"zip\": \"32219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1030\",\n                        \"zip\": \"23222\",\n                        \"qty\": 6,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1031\",\n                        \"zip\": \"92879\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1034\",\n                        \"zip\": \"21076\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1036\",\n                        \"zip\": \"48165\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1042\",\n                        \"zip\": \"11735\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1043\",\n                        \"zip\": \"33619\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1070\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1082\",\n                        \"zip\": \"80111\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1085\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1421\",\n                        \"zip\": \"27410\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"7ba98b31-462c-4822-aeb0-3bb2654b4114","name":"Real-Time Inventory - With No Country Code","originalRequest":{"method":"POST","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [],\n    \"skus\": [\n        \"000000000000000015\",\n        \"W1916STB\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/getInventoryData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n        \"skus\": [\n            {\n                \"sku\": \"000000000000000015\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1071\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"4033\",\n                        \"zip\": \"V4W 1N9\",\n                        \"qty\": 0,\n                        \"country_code\": \"CA\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"4035\",\n                        \"zip\": \"L6T 5K3\",\n                        \"qty\": 0,\n                        \"country_code\": \"CA\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"5001\",\n                        \"zip\": \"4007\",\n                        \"qty\": 0,\n                        \"country_code\": \"AU\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"6001\",\n                        \"zip\": \"CM72SD\",\n                        \"qty\": 0,\n                        \"country_code\": \"GB\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            },\n            {\n                \"sku\": \"W1916STB\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1001\",\n                        \"zip\": \"80238\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1002\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1003\",\n                        \"zip\": \"77043\",\n                        \"qty\": 469,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1004\",\n                        \"zip\": \"64150\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1005\",\n                        \"zip\": \"70062\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1006\",\n                        \"zip\": \"85034\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1007\",\n                        \"zip\": \"73160\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1008\",\n                        \"zip\": \"95758\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1009\",\n                        \"zip\": \"78219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1011\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1013\",\n                        \"zip\": \"98424\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1014\",\n                        \"zip\": \"30044\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1015\",\n                        \"zip\": \"60124\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1016\",\n                        \"zip\": \"32822\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1018\",\n                        \"zip\": \"33023\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1019\",\n                        \"zip\": \"44224\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1020\",\n                        \"zip\": \"45011\",\n                        \"qty\": 297,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1021\",\n                        \"zip\": \"28214\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1022\",\n                        \"zip\": \"08512\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1024\",\n                        \"zip\": \"37072\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1025\",\n                        \"zip\": \"84104\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1026\",\n                        \"zip\": \"06042\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1028\",\n                        \"zip\": \"55428\",\n                        \"qty\": 287,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1029\",\n                        \"zip\": \"32219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1030\",\n                        \"zip\": \"23222\",\n                        \"qty\": 6,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1031\",\n                        \"zip\": \"92879\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1034\",\n                        \"zip\": \"21076\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1036\",\n                        \"zip\": \"48165\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1042\",\n                        \"zip\": \"11735\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1043\",\n                        \"zip\": \"33619\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1070\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1082\",\n                        \"zip\": \"80111\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1085\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1421\",\n                        \"zip\": \"27410\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"b53050f3-33a7-4f7e-85b2-2f9284db36e2","name":"Real-Time Inventory - With Specific Country Code","originalRequest":{"method":"POST","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [\n        \"US\"\n    ],\n    \"skus\": [\n        \"000000000000000015\",\n        \"W1916STB\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/getInventoryData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n        \"skus\": [\n            {\n                \"sku\": \"000000000000000015\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1071\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            },\n            {\n                \"sku\": \"W1916STB\",\n                \"warehouses\": [\n                    {\n                        \"warehouse_id\": \"1001\",\n                        \"zip\": \"80238\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1002\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1003\",\n                        \"zip\": \"77043\",\n                        \"qty\": 469,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1004\",\n                        \"zip\": \"64150\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1005\",\n                        \"zip\": \"70062\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1006\",\n                        \"zip\": \"85034\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1007\",\n                        \"zip\": \"73160\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1008\",\n                        \"zip\": \"95758\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1009\",\n                        \"zip\": \"78219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1011\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1013\",\n                        \"zip\": \"98424\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1014\",\n                        \"zip\": \"30044\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1015\",\n                        \"zip\": \"60124\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1016\",\n                        \"zip\": \"32822\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1018\",\n                        \"zip\": \"33023\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1019\",\n                        \"zip\": \"44224\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1020\",\n                        \"zip\": \"45011\",\n                        \"qty\": 297,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1021\",\n                        \"zip\": \"28214\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1022\",\n                        \"zip\": \"08512\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1024\",\n                        \"zip\": \"37072\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1025\",\n                        \"zip\": \"84104\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1026\",\n                        \"zip\": \"06042\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1028\",\n                        \"zip\": \"55428\",\n                        \"qty\": 287,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1029\",\n                        \"zip\": \"32219\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1030\",\n                        \"zip\": \"23222\",\n                        \"qty\": 6,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1031\",\n                        \"zip\": \"92879\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1034\",\n                        \"zip\": \"21076\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1036\",\n                        \"zip\": \"48165\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1038\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1042\",\n                        \"zip\": \"11735\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1043\",\n                        \"zip\": \"33619\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1070\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1082\",\n                        \"zip\": \"80111\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1085\",\n                        \"zip\": \"90620\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1086\",\n                        \"zip\": \"75050\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    },\n                    {\n                        \"warehouse_id\": \"1421\",\n                        \"zip\": \"27410\",\n                        \"qty\": 0,\n                        \"country_code\": \"US\",\n                        \"in_transit\": 0,\n                        \"capped\": false\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"ebd82e23-a9f3-4996-b1e0-f4017a8183be","name":"Real-Time Inventory - With No SKU","originalRequest":{"method":"POST","header":[{"key":"host","value":"stage.backend.api.data.wheelpros.com","type":"text"},{"key":"x-amz-date","value":"","type":"text"},{"key":"x-amz-security-token","value":"","type":"text"},{"key":"Authorization","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n    \"country_code\": [\n        \"US\"\n    ],\n    \"skus\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/orders/getInventoryData"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"request_id\": \"6e3cf48af22d0503af02c6a778599ef7\",\n        \"skus\": []\n    }\n}"}],"_postman_id":"e9ce5d52-62d5-42db-9dd0-1c37689d2e5b"}],"id":"d63f7742-112b-42c1-814b-7fc11cbe5dfd","_postman_id":"d63f7742-112b-42c1-814b-7fc11cbe5dfd","description":"","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}}},{"name":"Search","item":[{"name":"Wheel Refined Search","id":"b5ae41ce-198f-4b14-8f1d-13fef6247052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filter_query\": <string>,\n    \"make\": <string>,\n    \"year\": <string>,\n    \"model\": <string>,\n    \"sub_model\": <string>,\n    \"min_qty\": <number>,\n    \"WHEEL\": {\n        \"vehicle_lifted\": <boolean>,\n        \"staggered_wheel\": <boolean>,\n        \"brand_desc\": <string>,\n        \"bolt_pattern\": <string>,\n        \"finish_desc\": <string>, \n        \"width\": <string>,\n        \"wheel_diameter\": <string>,\n        \"max_offset\": <string>,\n        \"centerbore\": <string>,\n        \"offset_type\": <string>\n    },\n    \"size\": <number>,\n    \"start\": <number>,\n    \"availability_type\": <string>,\n    \"warehouse\": <string>\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/search/refined/wheel","description":"<h2 id=\"request-payload\">Request Payload</h2>\n<p><strong>Free text search</strong></p>\n<p>you will be able to search the wheels by specifying the free text in the <code>filter_query</code> property in the request payload. \n<strong>Note:</strong> </p>\n<ol>\n<li>If you specify the <code>filter_query</code> with all other filter options, the filter applied over the free text search. </li>\n<li><code>filter_query</code> property won't work with staggered and lifted fitment search\n<strong>Vehicle Filter</strong></li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Default Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>year</td>\n<td>vehicle model year</td>\n<td>NA</td>\n<td>conditional ( Required when searching for staggered or lifted wheels )</td>\n</tr>\n<tr>\n<td>make</td>\n<td>vehicle make</td>\n<td>NA</td>\n<td>conditional ( Required when searching for staggered or lifted wheels )</td>\n</tr>\n<tr>\n<td>model</td>\n<td>vehicle model.</td>\n<td>NA</td>\n<td>conditional ( Required when searching for staggered or lifted wheels )</td>\n</tr>\n<tr>\n<td>sub_model</td>\n<td>vehicle sub_model</td>\n<td>NA</td>\n<td>conditional ( Required when searching for staggered or lifted wheels ), Don't have to send this property if the vehicle model does not have any sub_model.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> </p>\n<p>By default, if you send the vehicle filter ( year, make, model, sub_model (If Applicable) ), The result does not contain any staggered or listed wheels. We have to send the additional wheel filter options to get staggered or lifted fitments.</p>\n<p><strong>Stock Availability Filters</strong></p>\n<p>If you want to get only the stock available products we have to mention the <code>stock_available</code> as true, This will filter the products only if at least one qty is available in the selected country code ( country code will be taken based on the user profile )</p>\n<p>If you want to get only the stock available products in the <strong>preferred warehouse</strong> ( Preferred value will be picked from the user profile - Default value: 1001 ( DENVER ) ), you have to set <code>availability_type</code> property as <code>LOCAL</code> and <code>stock_available</code> to <code>true</code>. This will override the default behavior of the <code>stock_available</code> filter.</p>\n<p><strong>Quantity Filter</strong></p>\n<p>You will able to filter the products based on the stock availability specifying the <code>min_qty</code> filter. The total stock availability will be calculated based on the country code selected in the user profile.</p>\n<p><strong>Wheel Filters</strong></p>\n<p>We will be able to filter the wheels based on different wheel specifications ( <code>brand_desc</code>, <code>bolt_pattern</code>, <code>finish_desc</code>, <code>width</code>, <code>wheel_diameter</code>, <code>min_offset</code> , <code>max_offset</code>, <code>centerbore</code>, <code>offset_type</code> )</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Defautlt Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>brand_desc</td>\n<td>We have to mention the full brand description ( Eg: <code>American Force</code> )</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>bolt_pattern</td>\n<td>Bolt Pattern Metric</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>finish_desc</td>\n<td>We have to mention the Abbreviated Finish Description ( Eg: <code>BLACK</code> )</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>width</td>\n<td>Wheel width</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>wheel_diameter</td>\n<td>Wheel diameter</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>min_offset</td>\n<td>By using this property we will be able to filter the wheels in the specified offset range. If <code>min_offset</code> not given the result will contain any wheels having offset less than <code>max_offset</code> value specified</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>max_offset</td>\n<td>By using this property we will be able to filter the wheels in the specified offset range. If <code>max_offset</code> not given the result will contain any wheels having offset greater than the <code>min_offset</code> value specified</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>offset_type</td>\n<td>Type of offset ( Allowed values: <code>CUSTOM</code> <code>RANGE</code> ). It is required to send offset_type as <code>CUSTOM</code> when you specify the <code>min_offset</code> and <code>max_offset</code>. Specifying <code>RANGE</code> as an <code>offset_type</code> will search for wheels having custom offset ( offset value as XX )</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>centerbore</td>\n<td>Wheel Centerbore</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>staggered_wheel</td>\n<td>To include the staggered wheels in the response</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>vehicle_lifted</td>\n<td>To include the lifted wheels in the response</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>staggered_grouping</td>\n<td>This flag will be used to enable custom sorting in the response for staggered wheels. The result will be sorted based on model, finish, axle code.</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>scroll_pagination</td>\n<td>This attribute is used to paginate the custom staggered grouped response, This will be the positive increment number. If there is no result for the given page the API will return empty array.</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td><strong>Note:</strong></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ol>\n<li>We have to use the exact same values from the loadFilterData API calls without altering any values ( If loadFilterData return width as <code>10.00</code> we have to pass the same. If you send <code>10</code> then you might get no results )</li>\n</ol>\n<p><strong>Pagination:</strong></p>\n<p>The <code>start</code> and <code>size</code> properties are used to controll the pagination in the response.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Defautlt Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start</td>\n<td>The offset value ( If the value is 10 the response will skip fist 10 products in matched to the given request filters )</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n<tr>\n<td>size</td>\n<td>The number of expected results in the response. you can retrive upto 200 products in the single request. ( <strong>Max Value:</strong> 200 )</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>If you enable <code>staggered_wheel</code> and <code>staggered_grouping</code> the response structure will be different compared to other APIs, The model/finish will be included in the response only if it matches with at least one front and rear axles. Please refer the example section to get the response structure. The size and start properties are not going to work for staggered search with custom staggered grouping.</li>\n</ul>\n<h2 id=\"response-payload\">Response Payload</h2>\n<p>The wheel refined search will return two types of responses. The default response will be different from the staggered search custom response.</p>\n<p><strong>Default Response Structure:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"status\": 200,\n    \"response\": {\n        \"status\": {\n            \"rid\": \"4OqhifAujAUK1D4Q\",\n            \"time-ms\": 2\n        },\n        \"hits\": {\n            \"found\": 1,\n            \"start\": 0,\n            \"hit\": [\n                {\n                    \"id\": \"PRODUCT_AFTCF20F25-1-21\",\n                    \"fields\": {\n                        \"sku\": \"AFTCF20F25-1-21\",\n                        ...\n                    }\n                }\n            ]\n        }\n    }\n}\n</code></pre><p>To achieve custom grouping, the products in the response will be sorted on the model, finish, and axle code.\nThe response is paginated based on the model, For each page two models will be send the response.</p>\n<p><strong>Custom Staggered Grouping Response Structure:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"status\": 200,\n    \"response\": {\n        \"hits\": {\n            \"staggered_grouping\": true,\n            \"found\": 1,\n            \"start\": 1,\n            \"models\": [\n                \"AR935 REDLINE\"\n            ],\n            \"ModelFinishList\": [\n                {\n                    \"model_name\": \"AR935 REDLINE\",\n                    \"finish_match\": \"BRUSHED SILVER\"\n                }\n            ],\n            \"hit\": [\n                {\n                    \"model_name\": \"M117 MISANO\",\n                    \"filters\": [\n                        {\n                            \"finishDesc\": \"MATTE BLACK\",\n                            \"rear\": [\n                                {\n                                    \"sku\": \"M117209065+35\",\n                                    \"vehicle_cd\": 12345,\n                                    \"axle_cd\": \"R\",\n                                    \"staggered_options\": 1,\n                                    \"diameter\": \"20.00\",\n                                    \"model_name\": \"M117 MISANO\",\n                                    \"product_desc\": \"M117 20X9 5X4.5 MT-BLK 35MM\",\n                                    \"finish_desc\": \"MATTE BLACK\",\n                                    \"centerbore\": \"72.56\",\n                                    \"brand_cd\": \"NC\",\n                                    \"brand_desc\": \"Niche 1PC\",\n                                    \"image_code\": \"M117\",\n                                    \"upc\": \"885463878270\",\n                                    \"offset\": \"35\",\n                                    \"inv_order_type\": \"ST\",\n                                    \"size_desc\": \"20X9\",\n                                    \"bolt_pattern\": \"5X114.3\",\n                                    \"msrp\": \"330.00\",\n                                    \"image_aspects\": [\n                                        {\n                                            \"aspect\": \"Standard\",\n                                            \"image_name\": \"NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Jewel\",\n                                            \"image_name\": \"NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Barrel\",\n                                            \"image_name\": \"NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Face\",\n                                            \"image_name\": \"NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png?product_type=Wheels&amp;size=100\"\n                                        }\n                                    ],\n                                    \"type\": \"WHEEL\"\n                                }\n                            ],\n                            \"front\": [\n                                {\n                                    \"sku\": \"M117178065+40\",\n                                    \"vehicle_cd\": 33127,\n                                    \"axle_cd\": \"F\",\n                                    \"staggered_options\": 1,\n                                    \"diameter\": \"17.00\",\n                                    \"model_name\": \"M117 MISANO\",\n                                    \"product_desc\": \"M117 17X8 5X4.5 MT-BLK 40MM\",\n                                    \"finish_desc\": \"MATTE BLACK\",\n                                    \"centerbore\": \"72.56\",\n                                    \"brand_cd\": \"NC\",\n                                    \"brand_desc\": \"Niche 1PC\",\n                                    \"image_code\": \"M117\",\n                                    \"upc\": \"885463877792\",\n                                    \"offset\": \"40\",\n                                    \"inv_order_type\": \"ST\",\n                                    \"size_desc\": \"17X8\",\n                                    \"bolt_pattern\": \"5X114.3\",\n                                    \"msrp\": \"201.00\",\n                                    \"image_aspects\": [\n                                        {\n                                            \"aspect\": \"Standard\",\n                                            \"image_name\": \"NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Jewel\",\n                                            \"image_name\": \"NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Barrel\",\n                                            \"image_name\": \"NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png?product_type=Wheels&amp;size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Face\",\n                                            \"image_name\": \"NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png?product_type=Wheels&amp;size=100\"\n                                        }\n                                    ],\n                                    \"type\": \"WHEEL\"\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}\n</code></pre><p><strong>Getting image information from the response:</strong></p>\n<p>Wheel Refined search response will provide more information about the product which includes the images of different aspects of the product.</p>\n<p><code>image_aspects</code> section in the response will provide the images of an all the aspect of the wheel. If <code>image_aspects</code> section is empty/null there will be fallback image provide in the response.</p>\n<p>Note: Every image aspect should havae an <code>image_url</code> and <code>resized_image</code> property in the response we can able to get the different images by sending the size queryparam in the request.</p>\n<p><strong>Example:</strong></p>\n<p><a href=\"https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=100\">https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=100</a></p>\n<p><a href=\"https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=200\">https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=200</a></p>\n<p><a href=\"https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=300\">https://assets.wheelpros.com/AR935AR9354Standardfuyh46psinGeKX4DOXz.png?size=300</a></p>\n<p><strong>Fallback images:</strong></p>\n<p>For default response structure we can get the fallback image url from the <code>product_image_alt</code> property. This will provide you the high-resolution image of an wheel, you can also get the different size images by using the <code>product_image_url</code> in the response.</p>\n<p>For custom staggered response there is product_image_alt will be provided we have to construct the image_url from from the <code>image_code</code> from the response. Refer <strong>Retrieving the fallback images from image code</strong> section to get more information.</p>\n<p><strong>Retrieving the fallback images from image code</strong></p>\n<p><code>product_image_url</code> property in the default search response will have the image_code which will help us to construct the wheel images in different sizes.</p>\n<p><strong>Source:</strong> <a href=\"https://images.wheelpros.com/\">https://images.wheelpros.com/</a></p>\n<p>The images are categorized into different paths based on the size of image.</p>\n<p><strong>Ex:</strong> If the image code is AX1816 and you are looking for a medium size image the URL should be constructed as below.\n<a href=\"https://images.wheelpros.com/m500/mAX1816.png\">https://images.wheelpros.com/m500/mAX1816.png</a></p>\n<p><strong>Image Sizes:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Image Size</th>\n<th>path prefix</th>\n<th>image key prefix</th>\n<th>image url</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SMALL</td>\n<td>s72</td>\n<td>s</td>\n<td><a href=\"https://images.wheelpros.com/s72/sAX1816.png\">https://images.wheelpros.com/s72/sAX1816.png</a></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td>b215</td>\n<td>b</td>\n<td><a href=\"https://images.wheelpros.com/b215/bAX1816.png\">https://images.wheelpros.com/b215/bAX1816.png</a></td>\n</tr>\n<tr>\n<td>LARGE</td>\n<td>m500</td>\n<td>m</td>\n<td><a href=\"https://images.wheelpros.com/m500/mAX1816.png\">https://images.wheelpros.com/m500/mAX1816.png</a></td>\n</tr>\n<tr>\n<td>HIGH</td>\n<td>Not Applicable</td>\n<td>h</td>\n<td><a href=\"https://images.wheelpros.com/hAX1816.png\">https://images.wheelpros.com/hAX1816.png</a></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["search","refined","wheel"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[],"variable":[]}},"response":[{"id":"f583ac5b-a9c6-453e-b109-d029cb97e0bf","name":"Wheel Refined Search - With Filter Query","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filter_query\": \"Force\",\n    \"make\": \"Ford\",\n    \"year\": \"2000\",\n    \"model\": \"Excursion\",\n    \"sub_model\": \"Stock Height\",\n    \"min_qty\": 0,\n    \"countryCode\": \"US\",\n    \"WHEEL\": {\n        \"vehicle_lifted\": true,\n        \"staggered_wheel\": true,\n        \"brand_desc\": \"American Force\",\n        \"bolt_pattern\": \"8X170\",\n        \"finish_desc\": \"POLISHED\", \n        \"width\": \"9.00\",\n        \"wheel_diameter\": \"20.00\",\n        \"min_offset\": \"0\",\n        \"max_offset\": \"0\",\n        \"centerbore\": \"125.20\",\n        \"offset_type\": \"RANGE\"\n    },\n    \"size\": \"50\",\n    \"start\": 0,\n    \"availability_type\": \"ALL\",\n    \"warehouse\": \"1001\"\n}","options":{"raw":{"language":"json"}}},"url":"https://https://stage.backend.api.data.wheelpros.com/stage/search/refined/wheel"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"status\": {\n            \"rid\": \"4OqhifAujAUK1D4Q\",\n            \"time-ms\": 2\n        },\n        \"hits\": {\n            \"found\": 1,\n            \"start\": 0,\n            \"hit\": [\n                {\n                    \"id\": \"PRODUCT_AFTCF20F25-1-21\",\n                    \"fields\": {\n                        \"part_no\": \"AW02029087100\",\n                        \"offset\": \"0.0\",\n                        \"bolt_pattern_metric\": \"8X170\",\n                        \"abbreviated_finish_desc\": \"POLISHED\",\n                        \"sku\": \"AFTCF20F25-1-21\",\n                        \"msrp_usd\": \"630.0\",\n                        \"width\": \"9.00\",\n                        \"brand_cd\": \"AW\",\n                        \"type\": \"WHEEL\",\n                        \"finish_desc\": \"POLISHED\",\n                        \"product_desc\": \"AWF20 20X9 8X170 POLISHED 00MM\",\n                        \"inv_order_type\": \"SO\",\n                        \"product_image_alt\": \"https://images.wheelpros.com/hAW0201.png\",\n                        \"centerbore\": \"125.20\",\n                        \"wheel_diameter\": \"20.00\",\n                        \"brand_image_url\": \"GHCV\",\n                        \"product_image_url\": \"AW0201\",\n                        \"brand_desc\": \"American Force\",\n                        \"bolt_pattern_standard\": \"8X170\",\n                        \"upc\": \"885463804828\",\n                        \"size_desc\": \"20X9\",\n                        \"msrp_can\": \"851.0\",\n                        \"parent_brand\": \"American Force\",\n                        \"model_name\": \"AFW F20 ATOM SS\",\n                        \"cap_screw_qty\": \"\",\n                        \"offset_desc\": \"\",\n                        \"image_aspects\": [],\n                        \"cap_wrench\": \"\"\n                    }\n                }\n            ]\n        }\n    }\n}"},{"id":"17569e68-a7ef-4626-95a4-334521340a01","name":"Wheel Refined Search - Staggered Search","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"WHEEL\": {\n        \"vehicle_lifted\": true,\n        \"staggered_wheel\": true,\n        \"scroll_pagination\": 0,\n        \"staggered_grouping\": true\n    },\n    \"make\": \"Acura\",\n    \"model\": \"ILX\",\n    \"size\": \"50\",\n    \"start\": 0,\n    \"stock_available\": true,\n    \"availability_type\": \"AVAILABLE\",\n    \"year\": \"2020\"\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/search/refined/wheel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"hits\": {\n            \"staggered_grouping\": true,\n            \"found\": 1,\n            \"start\": 1,\n            \"models\": [\n                \"AR935 REDLINE\"\n            ],\n            \"ModelFinishList\": [\n                {\n                    \"model_name\": \"AR935 REDLINE\",\n                    \"finish_match\": \"BRUSHED SILVER\"\n                }\n            ],\n            \"hit\": [\n                {\n                    \"model_name\": \"M117 MISANO\",\n                    \"filters\": [\n                        {\n                            \"finishDesc\": \"MATTE BLACK\",\n                            \"rear\": [\n                                {\n                                    \"sku\": \"M117209065+35\",\n                                    \"vehicle_cd\": 12345,\n                                    \"axle_cd\": \"R\",\n                                    \"staggered_options\": 1,\n                                    \"diameter\": \"20.00\",\n                                    \"model_name\": \"M117 MISANO\",\n                                    \"product_desc\": \"M117 20X9 5X4.5 MT-BLK 35MM\",\n                                    \"finish_desc\": \"MATTE BLACK\",\n                                    \"centerbore\": \"72.56\",\n                                    \"brand_cd\": \"NC\",\n                                    \"brand_desc\": \"Niche 1PC\",\n                                    \"image_code\": \"M117\",\n                                    \"upc\": \"885463878270\",\n                                    \"offset\": \"35\",\n                                    \"inv_order_type\": \"ST\",\n                                    \"size_desc\": \"20X9\",\n                                    \"bolt_pattern\": \"5X114.3\",\n                                    \"msrp\": \"330.00\",\n                                    \"image_aspects\": [\n                                        {\n                                            \"aspect\": \"Standard\",\n                                            \"image_name\": \"NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Jewel\",\n                                            \"image_name\": \"NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Barrel\",\n                                            \"image_name\": \"NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Face\",\n                                            \"image_name\": \"NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png?product_type=Wheels&size=100\"\n                                        }\n                                    ],\n                                    \"type\": \"WHEEL\"\n                                }\n                            ],\n                            \"front\": [\n                                {\n                                    \"sku\": \"M117178065+40\",\n                                    \"vehicle_cd\": 33127,\n                                    \"axle_cd\": \"F\",\n                                    \"staggered_options\": 1,\n                                    \"diameter\": \"17.00\",\n                                    \"model_name\": \"M117 MISANO\",\n                                    \"product_desc\": \"M117 17X8 5X4.5 MT-BLK 40MM\",\n                                    \"finish_desc\": \"MATTE BLACK\",\n                                    \"centerbore\": \"72.56\",\n                                    \"brand_cd\": \"NC\",\n                                    \"brand_desc\": \"Niche 1PC\",\n                                    \"image_code\": \"M117\",\n                                    \"upc\": \"885463877792\",\n                                    \"offset\": \"40\",\n                                    \"inv_order_type\": \"ST\",\n                                    \"size_desc\": \"17X8\",\n                                    \"bolt_pattern\": \"5X114.3\",\n                                    \"msrp\": \"201.00\",\n                                    \"image_aspects\": [\n                                        {\n                                            \"aspect\": \"Standard\",\n                                            \"image_name\": \"NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Standardfvkn3wqok1P7Kd4FjPO.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Jewel\",\n                                            \"image_name\": \"NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Jewelfwrmm2fyssoW-Q1-uCm.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Barrel\",\n                                            \"image_name\": \"NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Barrelfwrmm2g0cvSWpUyh8Xx.png?product_type=Wheels&size=100\"\n                                        },\n                                        {\n                                            \"aspect\": \"Face\",\n                                            \"image_name\": \"NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"image_url\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png\",\n                                            \"resized_image\": \"https://assets.wheelpros.com/NC117M117Facefwrmm2g1odoMFL8FsUz.png?product_type=Wheels&size=100\"\n                                        }\n                                    ],\n                                    \"type\": \"WHEEL\"\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"b5ae41ce-198f-4b14-8f1d-13fef6247052"},{"name":"Tire Refined Search","id":"04a7ba3d-6021-4d60-8ece-e8e5df4be3f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filter_query\": <string>,\n    \"year\": <string>,\n    \"make\": <string>,\n    \"model\": <string>,\n    \"size\": <number>,\n    \"start\": <number>,\n    \"stock_available\": <boolean>,\n    \"availability_type\": <string>,\n    \"TIRE\": {\n        \"tire_size\": <string>,\n        \"tire_diameter\": <string>,\n        \"brand_desc\": <string>,\n        \"series\": <string>,\n        \"section_width\": <string>,\n        \"rim_diameter\": <string>,\n        \"min_qty\": <string>\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/search/refined/tire","description":"<h2 id=\"request-payload\">Request Payload</h2>\n<p><strong>Free text search</strong></p>\n<p>you will be able to search the tires by specifying the free text in the <code>filter_query</code> property in the request payload. \n<strong>Note:</strong> </p>\n<ol>\n<li>If you specify the <code>filter_query</code> with all other filter options, the filter applied over the free text search.</li>\n</ol>\n<p><strong>Vehicle Filter</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Default Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>year</td>\n<td>vehicle model year</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>make</td>\n<td>vehicle make</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>model</td>\n<td>vehicle model.</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>sub_model</td>\n<td>vehicle sub_model</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Stock Availability Filters</strong></p>\n<p>If you want to get only the stock available products we have to mention the <code>stock_available</code> as true, This will filter the products only if at least one qty is available in the selected country code ( country code will be taken based on the user profile )</p>\n<p>If you want to get only the stock available products in the <strong>preferred warehouse</strong> ( Preferred value will be picked from the user profile - Default value: 1001 ( DENVER ) ), you have to set <code>availability_type</code> property as <code>LOCAL</code> and <code>stock_available</code> to <code>true</code>. This will override the default behavior of the <code>stock_available</code> filter.</p>\n<p><strong>Quantity Filter</strong></p>\n<p>You will able to filter the products based on the stock availability specifying the <code>min_qty</code> filter. The total stock availability will be calculated based on the country code selected in the user profile.</p>\n<p><strong>tire Filters</strong></p>\n<p>We will be able to filter the wheels based on different wheel specifications ( <code>brand_desc</code>, <code>tire_size</code>, <code>tire_diameter</code>, <code>series</code>, <code>section_width</code>, <code>rim_diameter</code> )</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Defautlt Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>brand_desc</td>\n<td>We have to mention the full brand description ( Eg: <code>Nitto</code> )</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>tire_size</td>\n<td>Tire Size</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>tire_diameter</td>\n<td>Tire Diameter</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>series</td>\n<td>Tire Series/Aspect Ratio</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>section_width</td>\n<td>Tire Section Width</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n<tr>\n<td>rim_diameter</td>\n<td>Tire Section Width</td>\n<td>NA</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> </p>\n<ol>\n<li>We have to use the exact same values from the loadFilterData API calls without altering any values ( If loadFilterData return rim diameter as <code>17.00</code> we have to pass the same. If you send <code>17</code> then you might get no results )</li>\n</ol>\n<p><strong>Pagination:</strong></p>\n<p>The <code>start</code> and <code>size</code> properties are used to controll the pagination in the response.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n<th>Defautlt Value</th>\n<th>IsRequired</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start</td>\n<td>The offset value ( If the value is 10 the response will skip fist 10 products in matched to the given request filters )</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n<tr>\n<td>size</td>\n<td>The number of expected results in the response. you can retrive upto 200 products in the single request. ( <strong>Max Value:</strong> 200 )</td>\n<td>NA</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-payload\">Response Payload</h2>\n<p>The tire refined search follows the stands response structure for all the filters.</p>\n<p><strong>Default Response Structure:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"status\": 200,\n    \"response\": {\n        \"status\": {\n            \"rid\": \"4OqhifAujAUK1D4Q\",\n            \"time-ms\": 2\n        },\n        \"hits\": {\n            \"found\": 1,\n            \"start\": 0,\n            \"hit\": [\n                {\n                    \"id\": \"PRODUCT_N200-600\",\n                    \"fields\": {\n                        \"sku\": \"-N200-600\",\n                        ...\n                    }\n                }\n            ]\n        }\n    }\n}\n</code></pre><p>*<em><strong>Getting image information from the response:</strong>:</em>*</p>\n<p>From search response structure we can get the image url from the <code>product_image_alt</code> property. This will provide you the high-resolution image of an wheel, you can also get the different size images by using the <code>product_image_url</code> in the response.</p>\n<p><strong>Retrieving images from the image code</strong></p>\n<p><code>product_image_url</code> property in the default search response will have the image_code which will help us to construct the wheel images in different sizes.</p>\n<p><strong>Source:</strong> <a href=\"https://images.wheelpros.com/\">https://images.wheelpros.com/</a></p>\n<p>The images are categorized into different paths based on the size of image.</p>\n<p><strong>Ex:</strong> If the image code is NT05 and you are looking for a medium size image the URL should be constructed as below.\n<a href=\"https://images.wheelpros.com/m500/mNT05.png\">https://images.wheelpros.com/m500/mNT05.png</a></p>\n<p><strong>Image Sizes:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Image Size</th>\n<th>path prefix</th>\n<th>image key prefix</th>\n<th>image url</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SMALL</td>\n<td>s72</td>\n<td>s</td>\n<td><a href=\"https://images.wheelpros.com/s72/sNT05.png\">https://images.wheelpros.com/s72/sNT05.png</a></td>\n</tr>\n<tr>\n<td>MEDIUM</td>\n<td>b215</td>\n<td>b</td>\n<td><a href=\"https://images.wheelpros.com/b215/bNT05.png\">https://images.wheelpros.com/b215/bNT05.png</a></td>\n</tr>\n<tr>\n<td>LARGE</td>\n<td>m500</td>\n<td>m</td>\n<td><a href=\"https://images.wheelpros.com/m500/mNT05.png\">https://images.wheelpros.com/m500/mNT05.png</a></td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: There might be the possibility in some worst cases image may not fouund in the server.</p>\n","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["search","refined","tire"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[],"variable":[]}},"response":[{"id":"5210d8d0-9596-4389-b28d-ebaefe93f4d6","name":"Tire Refined Search - With All Filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filter_query\": \"Y110160104\",\n    \"year\": \"2020\",\n    \"make\": \"Acura\",\n    \"model\": \"ILX\",\n    \"size\": \"50\",\n    \"start\": 0,\n    \"stock_available\": false,\n    \"availability_type\": \"LOCAL\",\n    \"TIRE\": {\n        \"tire_size\": \"225/40R18\",\n        \"tire_diameter\": \"25\",\n        \"brand_desc\": \"Yokohama\",\n        \"series\": \"40\",\n        \"section_width\": \"225\",\n        \"rim_diameter\": \"18.0\",\n        \"min_qty\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/search/refined/tire"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"04a7ba3d-6021-4d60-8ece-e8e5df4be3f4"}],"id":"9412cfdd-5618-4e78-8dc5-4ae46302d52e","_postman_id":"9412cfdd-5618-4e78-8dc5-4ae46302d52e","description":"","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}}},{"name":"Authentication","event":[{"listen":"test","script":{"id":"6dea53fa-a850-44af-9b36-929df57f1b77","exec":["var responseBody = JSON.parse(responseBody);","pm.collectionVariables.set(\"AccessKeyId\", responseBody.response.Credentials.AccessKeyId);","pm.collectionVariables.set(\"SecretKey\", responseBody.response.Credentials.SecretKey);","pm.collectionVariables.set(\"SessionToken\", responseBody.response.Credentials.SessionToken);","pm.collectionVariables.set(\"Expiration\", responseBody.response.Credentials.Expiration);","console.log(responseBody);"],"type":"text/javascript"}}],"id":"c3ad5951-f59c-42fc-9256-897317699c26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"<username>\",\n    \"password\": \"<password>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/auth","description":"<h2 id=\"request-body\">Request Body</h2>\n<p><strong>email</strong> -&gt; The email address which is used to create an account in the product data portal</p>\n<p><strong>password</strong> -&gt; Your product data portal password</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"email\": \"productDataPortal-Username\",\n\"password\": \"productDataPortal-Password\"\n}\n</code></pre><p><strong>Status Codes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The Request has been processed successfully</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Request Validation failed or Invalid user credentials</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]},"isInherited":true,"source":{"_postman_id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","id":"8b07e93e-fdb5-4a0f-87fb-f880060df456","name":"Wheel Pros APIs","type":"collection"}},"urlObject":{"path":["auth"],"host":["https://stage.backend.api.data.wheelpros.com/stage"],"query":[],"variable":[]}},"response":[{"id":"4f22ffec-3131-4e64-b0ae-7374b4265275","name":"Authentication-Wrong Password","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"user@example.com\",\n    \"password\": \"wrong_password_here\"\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/auth"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"INCORRECT_CREDENTIALS\",\n        \"message\": \"Invalid User ID/Password. You have 4 attempts more!\",\n        \"type\": \"BusinessException\"\n    }\n}"},{"id":"b59bcc43-b6d4-4416-bf0c-c8518042fd4f","name":"Authentication-Missing Request Parameters","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"user@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/auth"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"INVALID_REQUEST_PARAMS\",\n        \"message\": \"Password not found in request\",\n        \"type\": \"BusinessException\"\n    }\n}"},{"id":"f187c67d-4b18-459c-a3a8-a36dca958f88","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"user@example.com\",\n    \"password\": \"your_strong_password\"\n}","options":{"raw":{"language":"json"}}},"url":"https://stage.backend.api.data.wheelpros.com/stage/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"response\": {\n        \"IdentityId\": \"<IdentityId>\",\n        \"Credentials\": {\n            \"AccessKeyId\": \"<AccessKeyId>\",\n            \"SecretKey\": \"<SecretKey>\",\n            \"SessionToken\": \"<SessionToken>\",\n            \"Expiration\": \"2020-10-15T16:45:07.000Z\"\n        }\n    }\n}"}],"_postman_id":"c3ad5951-f59c-42fc-9256-897317699c26"}],"auth":{"type":"awsv4","awsv4":{"basicConfig":[{"key":"accessKey","value":"ASIA454YJQ3XZICOPSM3"},{"key":"secretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"}],"advancedConfig":[{"key":"region","value":"us-west-2"},{"key":"service","value":"execute-api"},{"key":"sessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"}]}},"event":[{"listen":"prerequest","script":{"id":"b90c9368-6f33-4f02-9222-fb2593378202","type":"text/javascript","exec":["const IAMUserEnvironments = ['ProductDataPortal-Salesforce-Dev']","if (pm.environment.get('DebugMode') !== 'true' && !IAMUserEnvironments.includes(pm.environment.name)) {","    console.log(\">>>>>>>>>>>>   entring main if block....\");","    console.log('Checking Credentials');","    let expiration = new Date(pm.collectionVariables.get(\"Expiration\"));","    expiration =  Date.parse(expiration.toUTCString());","    const AccessKeyId = pm.collectionVariables.get(\"AccessKeyId\");","    const SecretKey = pm.collectionVariables.get(\"SecretKey\");","    const SessionToken = pm.collectionVariables.get(\"SessionToken\");","    const currenctTime = Date.now();","    var diffMs = (expiration - currenctTime );","    var diffMins = Math.round(((diffMs % 86400000) % 3600000) / 60000);","    const reuquestPath = pm.request.url.path;","    const reuquestPathLength = pm.request.url.path.length;","    if (reuquestPath[reuquestPathLength - 1] !== 'auth' && diffMins <= 1) {  ","        console.log(\"Credentials Got Expired, Attempting ReAuthenticate...\");  ","        login();","    } else {","        console.log('Credentials are valid, Validity will be expired in: ', diffMins);","    }","","    if (reuquestPath[reuquestPathLength - 1] !== 'auth' && (!AccessKeyId || !SecretKey || !SessionToken || !expiration)) {  ","        console.log(\"Credentials Not Found, Attempting...\");  ","        login();","    }","","    function login() {","        pm.sendRequest({","        url: pm.environment.get(\"baseURL\") + '/auth',","            method: 'POST',","            header: {","                'content-type': 'application/json'","            },","            body: {","                mode: 'raw',","                raw: JSON.stringify({ email: pm.environment.get(\"pdp-username\"), password: pm.environment.get(\"pdp-password\") })","            }","        }, function (err, res) {","                if (err) {","                    console.log('Authentication Failed!, Error:', err);","                } else {","                    console.log('Authentication Successful!, Updating Collection Variables...');","                    const authResponse = res.json();","                pm.collectionVariables.set(\"AccessKeyId\", authResponse.response.Credentials.AccessKeyId);","                pm.collectionVariables.set(\"SecretKey\", authResponse.response.Credentials.SecretKey);","                pm.collectionVariables.set(\"SessionToken\", authResponse.response.Credentials.SessionToken);","                pm.collectionVariables.set(\"Expiration\", authResponse.response.Credentials.Expiration);","                console.log('Collection Variables Updated Successfully!');","                }","            });","    }","}","","","if (IAMUserEnvironments.includes(pm.environment.name)) {","    pm.collectionVariables.set(\"AccessKeyId\", pm.environment.get(\"AccessKeyId\"));","    pm.collectionVariables.set(\"SecretKey\", pm.environment.get(\"SecretKey\"));","    pm.collectionVariables.unset(\"SessionToken\");","    ","}"]}},{"listen":"test","script":{"id":"a90c7a5a-c463-492f-9061-2ffa7d90d0c2","type":"text/javascript","exec":[""]}}],"variable":[{"key":"AccessKeyId","value":"ASIA454YJQ3XZICOPSM3"},{"key":"SecretKey","value":"Vr72bIxgPlBC6DYLnHxjlJ2s/IMpeWfgj5Vthq36"},{"key":"SessionToken","value":"IQoJb3JpZ2luX2VjEKP//////////wEaCXVzLXdlc3QtMiJIMEYCIQC93TdqcmQHHNxNW6nkeGdP48tO+7XzHqtk0pkzjPd8DwIhANx0erjWdNQ8Q/zSXHo0AsS6QoH3OYeVswCM91xEQYlBKs0ECNz//////////wEQAhoMODg4ODQwNzUwODMxIgyv5QQxi9ooXUmHVFoqoQSjmQz+PodZbOgzYlBRIb4ATf703J0Qglr8rXExNyH6XckNIYDMRRQrt4kBNKx7JF2aW4FaMl51dcvTHwgr49j/HUFWchQt8gzTNGooVnDEWNA74+QLztLBSwoy5EUK1iXNnnE1IGbaic2TMG7Fimfrywh4Lkeui/6rIPDuviwIKjTC4F61FFa038bYf3HTPlZjjTCm1vVJLAfpQ7rcqVZYPRcCXNqZcSgPz06nJHF+c0VhGPMxy/iQ9maRg6J9Xoyz2m+/DZj6Ak9IyncRCZjUK2cZ9dXUqyNMb1gy+yXWXOGAI1ux76mJxz6ij3Z1RV7LUm0AaQBIn4JzvjYLSIyiFYA5IqASzUg1uazODf6yFPLcF3pGPFK1KAIIFwPMcmwmA3umn0/oA4hk6EffgpvgSoHYxGuEQ+2mGeRMdzy60xRmhJhk5hNMKnXr3RstY8eVIHAF4KEmzyK6I5SSatpIaulRT9ttv8pmIb6bXdaMXe2zRzwWRoqmoSgqwQkIgCY5tZtIveLFHfJKAyHEiFZueo2wKcFrdy01ixSdcl6YGABMZ0Sz4a6SyDb9xaRRYKfX0uSwVJnf5xEhYxiAnxyszHrVgh6CgG3hmYMG8+AygpQ1jUqwIkGZptgEOD0M6qCLxSc17R974oYefgeaTzpN79TsDekMaD2D0W23odbuuMKovb0pky3lbhM4J4e4sBBv85ViFnH1oGcz2w7+tGe6EDDNiu6CBjqEAuFVxWG9PVCE8t2N1S7dLogVFnDlM/9pB2Xh3S4MvihYrbiSA1nsenGOpjZPHKdPS2hDiDik7m8nD9HSPV/s3mK8enMAmI6l7/0/YWo6HXg6ODpEXW5mLNZHlR7Q0Tg52qOuWwbCcRV9B9D8q4fVIKUaYIHALsFN5kGMbPNb5kMJBOLBwxAIEVonP8DvhhFHRxewMC+di8rzG4bXYDyBWUko3S4SsL3NIJUflID1uPLnSGPErkMcfjd9f8+FPbMo4M0XfD/PKqS7OSvCwEhdvrypBd/IuUYYcaewevqz0qWepVPG1UFqR7uVTADlLP3DwiwdhdkhwoQTgL8K8N+FbLY6+zoK"},{"key":"Expiration","value":"2021-03-24T19:30:37.000Z"},{"key":"region","value":"us-west-2"},{"key":"serviceName","value":"execute-api"}]}