{"info":{"_postman_id":"34ed022d-2fd6-48ab-bc30-b4ce60a22da3","name":"Verified Reviews API","description":"<html><head></head><body><p>The ACCOUNT_URL variable is the URL of the Verified reviews platform related to your account, for example :</p>\n<ul>\n<li><a href=\"http://www.avis-verifies.com\">www.avis-verifies.com</a></li>\n<li><a href=\"http://www.verified-reviews.com\">www.verified-reviews.com</a></li>\n<li><a href=\"http://www.opiniones-verificadas.com\">www.opiniones-verificadas.com</a></li>\n</ul>\n<h1 id=\"authentication-token-calculation\">Authentication - Token calculation</h1>\n<p>The token param should be calculated by concatenate (no separator) the following data and encrypt them using SHA256 :</p>\n<ul>\n<li>idWebsite</li>\n<li>secretKey</li>\n<li>date (YYYY-MM-DD)</li>\n</ul>\n<p>Example : SHA256(<code>idWebsite</code>.<code>secretKey</code>.<code>date</code>)</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication - Token calculation","slug":"authentication-token-calculation"}],"owner":"2336519","collectionId":"34ed022d-2fd6-48ab-bc30-b4ce60a22da3","publishedId":"SVzw6MK5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-10-24T12:18:02.000Z"},"item":[{"name":"Shops","item":[{"name":"Get all shops","id":"29c8dd06-4dad-4d41-8ffb-b8655ee842ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"idWebsite\": \"{{idWebsite}}\",\n    \"token\": \"{{token}}\"\n}"},"url":"https://{{ACCOUNT_URL}}/api/2.0/shops","description":"<p>Get all shops  </p>\n<p>Return an array of <a href=\"#attributs\">shops entity</a>  </p>\n<p>Body must contains :</p>\n<ul>\n<li><code>idWebsite</code></li>\n<li><code>token</code></li>\n</ul>\n<div class=\"headers\">\n    <div class=\"heading\">RESPONSES</div>\n    <hr />\n</div>\n<table>\n    <thead>\n        <th>Code</th>\n        <th>Description</th>\n    </thead>\n    <tr>\n        <td>200</td>\n        <td>OK</td>\n    </tr>\n</table>\n<br />\n<div class=\"headers\">\n    <div class=\"heading\">QUERY PARAMS</div>\n    <hr />\n</div>\n<table>\n    <thead>\n        <th>name</th>\n        <th>Description</th>\n        <th>Exemple</th>\n    </thead>\n    <tr>\n        <td>ids_shop[]</td>\n        <td>(Optional) filter by id_shop</td>\n        <td>?ids_shop[]=21&amp;ids_shop[]=22</td>\n    </tr>\n</table>\n","urlObject":{"protocol":"https","path":["api","2.0","shops"],"host":["{{ACCOUNT_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"29c8dd06-4dad-4d41-8ffb-b8655ee842ac"},{"name":"Get a shop","id":"fa302b11-da9f-483c-8222-02d9a92363f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"idWebsite\" : \"{{idWebsite}}\",\n\t\"token\" : \"{{token}}\"\n}"},"url":"https://{{ACCOUNT_URL}}/api/2.0/shops/:id","description":"<p>Get a shop  </p>\n<p>Return a <a href=\"#attributs\">shop entity</a>  </p>\n<p>Body must contains :</p>\n<ul>\n<li><code>idWebsite</code></li>\n<li><code>token</code></li>\n</ul>\n<div class=\"headers\">\n    <div class=\"heading\">RESPONSES</div>\n    <hr />\n</div>\n<table>\n    <thead>\n        <th>Code</th>\n        <th>Description</th>\n    </thead>\n    <tr>\n        <td>200</td>\n        <td>Ok</td>\n    </tr>\n    <tr>\n        <td>404</td>\n        <td>Not found</td>\n    </tr>\n</table>","urlObject":{"protocol":"https","path":["api","2.0","shops",":id"],"host":["{{ACCOUNT_URL}}"],"query":[],"variable":[{"id":"6002a8af-29ef-480a-8ed4-5610ee351550","description":{"content":"<p>(Required) Shop ID</p>\n","type":"text/plain"},"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"fa302b11-da9f-483c-8222-02d9a92363f9"},{"name":"Create a shop","id":"a8c66624-a01c-401c-8a02-a880fbc3c152","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"idWebsite\": \"{{idWebsite}}\",\r\n    \"token\": \"{{token}}\",\r\n    \"shop\": {\r\n        \"id_shop\": \"21\",\r\n        \"name_shop\": \"Shop Paris\",\r\n        \"address\": \"1 rue de la république\",\r\n        \"postal_code\": \"13800\",\r\n        \"city\": \"Paris\",\r\n        \"phone\": \"0123456789\",\r\n        \"email\": \"shop.mail@mail.com\",\r\n        \"website\": \"https://mywebsite.com\",\r\n        \"representative\": \"Jean Dupont\",\r\n        \"description\": \"Best shop\",\r\n        \"url_gmb\": \"https://mywebsite.com\",\r\n        \"status\": \"active\"\r\n    }\r\n}"},"url":"https://{{ACCOUNT_URL}}/api/2.0/shops","description":"<p>Create a new shop </p>\n<p>Body must contains :</p>\n<ul>\n<li><code>idWebsite</code></li>\n<li><code>token</code></li>\n<li><code>shop (array)</code> array must be a <a href=\"#attributs\">shops entity</a></li>\n</ul>\n<div class=\"headers\">\n    <div class=\"heading\">RESPONSES</div>\n    <hr />\n</div>\n<table>\n    <thead>\n        <th>Code</th>\n        <th>Description</th>\n    </thead>\n    <tr>\n        <td>200</td>\n        <td>Already exist</td>\n    </tr>\n    <tr>\n        <td>201</td>\n        <td>Ok - Created</td>\n    </tr>\n    <tr>\n        <td>400</td>\n        <td>Error in input data</td>\n    </tr>\n</table>\n\n","urlObject":{"protocol":"https","path":["api","2.0","shops"],"host":["{{ACCOUNT_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8c66624-a01c-401c-8a02-a880fbc3c152"},{"name":"Edit a shop","id":"a64719e9-69c7-41a3-a9be-4a6f2de09d2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"idWebsite\": \"{{idWebsite}}\",\r\n    \"token\": \"{{token}}\",\r\n    \"shop\": {\r\n        \"name_shop\": \"Shop Paris\",\r\n        \"address\": \"1 rue de la république\",\r\n        \"postal_code\": \"13800\",\r\n        \"city\": \"Paris\",\r\n        \"phone\": \"0123456789\",\r\n        \"email\": \"shop.mail@mail.com\",\r\n        \"website\": \"https://mywebsite.com\",\r\n        \"representative\": \"Jean Dupont\",\r\n        \"description\": \"Best shop\",\r\n        \"url_gmb\": \"https://mywebsite.com\",\r\n        \"status\": \"active\"\r\n    }\r\n}"},"url":"https://{{ACCOUNT_URL}}/api/2.0/shops/:id","description":"<p>Edit a shop</p>\n<p>Body must contains :</p>\n<ul>\n<li><code>idWebsite</code></li>\n<li><code>token</code></li>\n<li><code>shop (array)</code> must be an <a href=\"#attributs\">shops entity</a></li>\n</ul>\n<div class=\"headers\">\n    <div class=\"heading\">RESPONSES</div>\n    <hr />\n</div>\n<table>\n    <thead>\n        <th>Code</th>\n        <th>Description</th>\n    </thead>\n    <tr>\n        <td>200</td>\n        <td>OK</td>\n    </tr>\n    <tr>\n        <td>404</td>\n        <td>Not Found</td>\n    </tr>\n    <tr>\n        <td>400</td>\n        <td>Error in input data</td>\n    </tr>\n</table>\n\n","urlObject":{"protocol":"https","path":["api","2.0","shops",":id"],"host":["{{ACCOUNT_URL}}"],"query":[],"variable":[{"id":"811f6407-3b00-44b4-b7dd-4b6a73d98d46","description":{"content":"<p>(Required) Shop ID</p>\n","type":"text/plain"},"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"a64719e9-69c7-41a3-a9be-4a6f2de09d2f"}],"id":"5c0a158b-9e04-4efb-a62c-78669450ef39","description":"<h3 id=\"attributs\">Attributs</h3>\n<table>\n    <thead>\n        <th>Name</th>\n        <th>Type</th>\n        <th>Required</th>\n        <th>Description</th>\n        <th>Exemple</th>\n    </thead>\n    <tr>\n        <td>id_shop</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>ID Shop</td>\n        <td><i>21</i></td>\n    </tr>   \n    <tr>\n        <td>name_shop</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Public shop name</td>\n        <td><i>Shop Paris</i></td>\n    </tr>   \n    <tr>\n        <td>address</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Public shop address</td>\n        <td><i>27th St</i></td>\n    </tr>   \n    <tr>\n        <td>postal_code</td>\n        <td>int</td>\n        <td>Yes</td>\n        <td>Postcode of your shop</td>\n        <td><i>75000</i></td>\n    </tr>   \n    <tr>\n        <td>city</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>City of your shop</td>\n        <td><i>Paris</i></td>\n    </tr>   \n    <tr>\n        <td>phone</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Phone of your shop</td>\n        <td><i>+33123456789</i></td>\n    </tr>   \n    <tr>\n        <td>email</td>\n        <td>string (Must be a valid email)</td>\n        <td>Yes</td>\n        <td>Email related to the shop</td>\n        <td><i>mail@mail.com</i></td>\n    </tr>   \n    <tr>\n        <td>website</td>\n        <td>string (Must be a valid url)</td>\n        <td>Yes</td>\n        <td>Website URL of the shop</td>\n        <td><i>https://www.shopwebsite.com</i></td>\n    </tr>   \n    <tr>\n        <td>representative</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Name of the representative</td>\n        <td><i>Jean Dupont</i></td>\n    </tr>   \n    <tr>\n        <td>description</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Public description of your shop</td>\n        <td><i>Best shop in Paris</i></td>\n    </tr>   \n    <tr>\n        <td>url_gmb</td>\n        <td>string (Must be a valid url)</td>\n        <td></td>\n        <td>URL of the Google My business account</td>\n        <td></td>\n    </tr>   \n    <tr>\n        <td>id_facebook</td>\n        <td>string</td>\n        <td></td>\n        <td>Facebook ID of the account</td>\n        <td></td>\n    </tr>   \n    <tr>\n        <td>shop_pages_jaunes</td>\n        <td>string</td>\n        <td></td>\n        <td>Name of your shop on Pages Jaunes (France only)</td>\n        <td></td>\n    </tr>   \n    <tr>\n        <td>status</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td></td>\n        <td><i>\"active\" or \"inactive\"</i></td>\n    </tr>\n</table>\n","event":[{"listen":"prerequest","script":{"id":"d0497e80-944b-495a-9244-0dca907d0a2f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"783a43c0-eab5-494c-abbd-f3b71ae98de1","type":"text/javascript","exec":[""]}}],"_postman_id":"5c0a158b-9e04-4efb-a62c-78669450ef39"},{"name":"No-REST Version","item":[{"name":"Order","item":[{"name":"ORDER - Create an order","event":[{"listen":"prerequest","script":{"id":"8700f419-8809-4622-81dc-88eae6c2a7fd","exec":["// Signature calculation (param 'sign')","// PLEASE DO NOT CHANGE ANYTHING BELOW. Data related to your order should be edited in the environment variables","// START -----------------","var to_sha1 = \"\";","to_sha1 += pm.environment.get(\"query\");","to_sha1 += pm.environment.get(\"order_ref\");","to_sha1 += pm.environment.get(\"email\");","to_sha1 += pm.environment.get(\"lastname\");","to_sha1 += pm.environment.get(\"firstname\");","to_sha1 += pm.environment.get(\"order_date\");","to_sha1 += pm.environment.get(\"delay\");","to_sha1 += pm.environment.get(\"SECRETKEY\");","","var obj_sha1 = CryptoJS.SHA1(to_sha1);","console.log(to_sha1);","pm.environment.set(\"sign\",obj_sha1.toString());","// END -----------------","",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"3255e92d-dc16-4f92-9ee5-05943b129387","exec":[""],"type":"text/javascript"}}],"id":"bfd0524c-c48d-47ac-bfab-fda57dbe08e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"idWebsite","value":"{{IDWEBSITE}}","description":"<p>Do not change values here, go to environment variables.</p>\n","type":"text"},{"key":"message","value":"{  \n   \"query\":\"{{query}}\",\n   \"order_ref\":\"{{order_ref}}\",\n   \"email\":\"{{email}}\",\n   \"lastname\":\"{{lastname}}\",\n   \"firstname\":\"{{firstname}}\",\n   \"order_date\":\"{{order_date}}\",\n    \"delay\":\"{{delay}}\",\n   \"sign\":\"{{sign}}\",\n    \"PRODUCTS\": {\n      \"0\" : {\n          \"id_product\": \"{{id_product_1}}\",\n          \"name_product\": \"{{name_product_1}}\",\n          \"GTIN_EAN\": \"{{GTIN_EAN_1}}\",\n          \"sku\": \"{{sku_1}}\",\n          \"url_product\": \"{{url_product_1}}\",\n          \"url_product_image\": \"{{url_product_image_1}}\"\n      },\n      \"1\" : {\n          \"id_product\": \"{{id_product_2}}\",\n          \"name_product\": \"{{name_product_2}}\",\n          \"GTIN_EAN\": \"{{GTIN_EAN_1}}\",\n          \"sku\": \"{{sku_2}}\",\n          \"url_product\": \"{{url_product_2}}\",\n          \"url_product_image\": \"{{url_product_image_2}}\"\n      }\n    }\n}\n","description":"<p>Do not change values here, go to environment variables.</p>\n","type":"text"}]},"url":"https://www.avis-verifies.com/index.php?action=act_api_notification_sha1&type=json2","urlObject":{"protocol":"https","path":["","index.php"],"host":["www","avis-verifies","com"],"query":[{"key":"action","value":"act_api_notification_sha1"},{"key":"type","value":"json2"}],"variable":[]}},"response":[],"_postman_id":"bfd0524c-c48d-47ac-bfab-fda57dbe08e2"}],"id":"e469bded-0b8e-43c6-85f0-038f87bc2cd5","_postman_id":"e469bded-0b8e-43c6-85f0-038f87bc2cd5","description":""}],"id":"2093adae-aad7-47dc-8645-540da1635b6b","_postman_id":"2093adae-aad7-47dc-8645-540da1635b6b","description":""},{"name":"Reviews - Brand","item":[{"name":"Get reviews feed","id":"2dbe3eed-c0cd-4110-bb28-e1fbf36820d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://awsapis3.netreviews.eu/website?idWebsite={{IDWEBSITE}}&format={{FORMAT}}&order_by={{ORDER_BY}}&range={{RANGE}}&p={{PAGE}}&iso_code={{ISO_CODE}}&order_type={{ORDER_TYPE}}&compare={{COMPARE}}&sandbox={{SANDBOX}}","description":"<p>Get all reviews</p>\n","urlObject":{"protocol":"https","path":["website"],"host":["awsapis3","netreviews","eu"],"query":[{"description":{"content":"<p>Your Verified Reviews idWebsite. REQUIRED</p>\n","type":"text/plain"},"key":"idWebsite","value":"{{IDWEBSITE}}"},{"description":{"content":"<p>Format of your api data configured in your back office Verified Reviews. REQUIRED</p>\n","type":"text/plain"},"key":"format","value":"{{FORMAT}}"},{"description":{"content":"<p>This param is used either to sort or to filter the feed.\nTo sort: asc / desc. To compare: equal/sup/inf. By default : sort - desc. </p>\n","type":"text/plain"},"key":"order_by","value":"{{ORDER_BY}}"},{"description":{"content":"<p>Number of reviews per page. By default: 100</p>\n","type":"text/plain"},"key":"range","value":"{{RANGE}}"},{"description":{"content":"<p>Page number. By default 0 (the first one)</p>\n","type":"text/plain"},"key":"p","value":"{{PAGE}}"},{"description":{"content":"<p>First two letter of your country lang. For example br for Brazil or de for Deutschland. Do not use this if sandbox is filled. By default: fr. </p>\n","type":"text/plain"},"key":"iso_code","value":"{{ISO_CODE}}"},{"description":{"content":"<p>Data used to sort / filter. By default: review_date. </p>\n","type":"text/plain"},"key":"order_type","value":"{{ORDER_TYPE}}"},{"description":{"content":"<p>In case of filter ONLY. Value to compare. </p>\n","type":"text/plain"},"key":"compare","value":"{{COMPARE}}"},{"description":{"content":"<p>Url of your sandbox if you have a staging environment</p>\n","type":"text/plain"},"key":"sandbox","value":"{{SANDBOX}}"}],"variable":[]}},"response":[],"_postman_id":"2dbe3eed-c0cd-4110-bb28-e1fbf36820d2"},{"name":"Example: 100 first reviews sorted asc","id":"39c40063-9c6b-49b0-9719-f0cb75a71dc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://awsapis3.netreviews.eu/website?idWebsite=369fdcb5-631a-b004-7967-d48e238dcfbb&format=json&order_by=asc&range=100&p=0&iso_code=fr","description":"<p>Get the 100 first reviews sorted </p>\n","urlObject":{"protocol":"https","path":["website"],"host":["awsapis3","netreviews","eu"],"query":[{"description":{"content":"<p>Your Verified Reviews idWebsite. REQUIRED</p>\n","type":"text/plain"},"key":"idWebsite","value":"369fdcb5-631a-b004-7967-d48e238dcfbb"},{"description":{"content":"<p>Format of your api data configured in your back office Verified Reviews. REQUIRED</p>\n","type":"text/plain"},"key":"format","value":"json"},{"description":{"content":"<p>This param is used either to sort or to filter the feed.\nTo sort: asc / desc. To compare: equal/sup/inf. By default : sort - asc. </p>\n","type":"text/plain"},"key":"order_by","value":"asc"},{"description":{"content":"<p>Number of reviews per page. By default: 100</p>\n","type":"text/plain"},"key":"range","value":"100"},{"description":{"content":"<p>Page number. By default 0 (the first one)</p>\n","type":"text/plain"},"key":"p","value":"0"},{"description":{"content":"<p>First two letter of your country lang. For example br for Brazil or de for Deutschland. By default: fr. </p>\n","type":"text/plain"},"key":"iso_code","value":"fr"}],"variable":[]}},"response":[],"_postman_id":"39c40063-9c6b-49b0-9719-f0cb75a71dc0"},{"name":"Example: 100 first reviews having rate = 4 ","id":"05f872b9-44ec-4b39-a063-cb3a5e2287f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://awsapis3.netreviews.eu/website?idWebsite=369fdcb5-631a-b004-7967-d48e238dcfbb&format=json&order_by=equal&range=50&p=0&iso_code=fr&order_type=rate&compare=4","description":"<p>Get the 100 first reviews having rate = 4 </p>\n","urlObject":{"protocol":"https","path":["website"],"host":["awsapis3","netreviews","eu"],"query":[{"description":{"content":"<p>Your Verified Reviews idWebsite. REQUIRED</p>\n","type":"text/plain"},"key":"idWebsite","value":"369fdcb5-631a-b004-7967-d48e238dcfbb"},{"description":{"content":"<p>Format of your api data configured in your back office Verified Reviews. REQUIRED</p>\n","type":"text/plain"},"key":"format","value":"json"},{"description":{"content":"<p>This param is used either to sort or to filter the feed.\nTo sort: asc / desc. To compare: equal/sup/inf. By default : sort - asc. </p>\n","type":"text/plain"},"key":"order_by","value":"equal"},{"description":{"content":"<p>Number of reviews per page. By default: 100</p>\n","type":"text/plain"},"key":"range","value":"50"},{"description":{"content":"<p>Page number. By default 0 (the first one)</p>\n","type":"text/plain"},"key":"p","value":"0"},{"description":{"content":"<p>First two letter of your country lang. For example br for Brazil or de for Deutschland. By default: fr. </p>\n","type":"text/plain"},"key":"iso_code","value":"fr"},{"description":{"content":"<p>Data used to sort / filter. By default: review_date. </p>\n","type":"text/plain"},"key":"order_type","value":"rate"},{"description":{"content":"<p>In case of filter ONLY. Value to compare. </p>\n","type":"text/plain"},"key":"compare","value":"4"}],"variable":[]}},"response":[],"_postman_id":"05f872b9-44ec-4b39-a063-cb3a5e2287f6"}],"id":"be0d96b1-952a-4565-aaf4-be130cbec809","description":"<h3 id=\"description\">Description</h3>\n<p>\nThis API allows you to get a json containing all your brand reviews and sort them according to your input data.\n</p>\n<p><i>\nThis API requires the activation of the API functionality within your Verified Reviews back office.</i> \n</p><p>\n\n</p><h3 id=\"attributs\">Attributs</h3>\n<table>\n    <thead>\n        <th>Name</th>\n        <th>Type</th>\n        <th>Required</th>\n        <th>Description</th>\n        <th>Exemple</th>\n    </thead>\n    <tr>\n        <td>idWebsite</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Your Verified Reviews idWebsite</td>\n        <td><i>369fdcb5-xxxx-xxxx-xxxx-d48e238dcfbb</i></td>\n    </tr>   \n    <tr>\n        <td>format</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Format of your api data configured in your back office Verified Reviews</td>\n        <td><i>json</i></td>\n    </tr>   \n    <tr>\n        <td>order_by</td>\n        <td>string</td>\n        <td>No</td>\n        <td>This param is used either to sort or to filter the feed.</td>\n        <td><i>To sort: asc / desc <br />To compare: equal/sup/inf</i></td>\n    </tr>   \n    <tr>\n        <td>range</td>\n        <td>int</td>\n        <td>No</td>\n        <td>Number of reviews per page</td>\n        <td><i>100</i></td>\n    </tr>   \n    <tr>\n        <td>p</td>\n        <td>int</td>\n        <td>No</td>\n        <td>Page number</td>\n        <td><i>0 (first)</i></td>\n    </tr>       \n    <tr>\n        <td>order_type</td>\n        <td>string </td>\n        <td>No</td>\n        <td>Data used to sort / filter</td>\n        <td><i>rate</i></td>\n    </tr>   \n    <tr>\n        <td>compare</td>\n        <td>string</td>\n        <td>No. In case of filter ONLY</td>\n        <td>Value to compare</td>\n        <td><i>4</i></td>\n    </tr>   \n    <tr>\n        <td>iso_code</td>\n        <td>string</td>\n        <td>No</td>\n        <td>First two letter of your country lang. Do not use this if sandbox is filled</td>\n        <td><i>fr</i></td>\n    </tr>   \n    <tr>\n        <td>sandbox</td>\n        <td>string</td>\n        <td>No</td>\n        <td>Url of your sandbox if you have a staging environment</td>\n        <td><i>sandbox-xxx.dev</i></td>\n    </tr>   \n    \n</table>\n","event":[{"listen":"prerequest","script":{"id":"b44f66bf-535b-4189-9e7d-2f37ed0c64e1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"67b310fa-1cda-4ce5-8919-52219e78c7a5","type":"text/javascript","exec":[""]}}],"_postman_id":"be0d96b1-952a-4565-aaf4-be130cbec809"},{"name":"Reviews - Product","item":[{"name":"Get all reviews for a product","id":"a501537f-2c99-4f2e-ab47-d405fa8e1511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"reviews\",\n    \"product\": [\"{{ID_PRODUCT}}\"], \n    \"idWebsite\": \"{{IDWEBSITE}}\",\n    \"plateforme\": \"{{PLATFORM}}\",\n    \"order\": \"{{ORDER}}\", \n    \"limit\": {{LIMIT}}, \n    \"offset\": {{OFFSET}},\n    \"field\": \"{{FIELD}}\",\n    \"sign\": \"{{SIGN}}\", \n    \"compare\" : \"{{COMPARE}}\", \n    \"sandbox_url\" : \"{{SANDBOX_URL}}\" \n}","options":{"raw":{"language":"json"}}},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get the full feed of product reviews</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"a501537f-2c99-4f2e-ab47-d405fa8e1511"},{"name":"Example: Get last 5 reviews for a product","id":"daf51360-c79e-451a-b627-33bdd0ef66b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"reviews\",\n    \"product\": [\"test-developer0\"],\n    \"idWebsite\": \"369fdcb5-631a-b004-7967-d48e238dcfbb\",\n    \"plateforme\": \"fr\",\n    \"limit\":5,\n    \"offset\":0,\n    \"order\":\"date_desc\"\n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get last 5 reviews for a product</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"daf51360-c79e-451a-b627-33bdd0ef66b8"},{"name":"Example: Get last 5 reviews with rate = 4 for a product","id":"3bf47a95-7e17-459c-a75f-ab226d2a54f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"reviews\",\n    \"product\": [\"test-developer0\"],\n    \"idWebsite\": \"369fdcb5-631a-b004-7967-d48e238dcfbb\",\n    \"plateforme\": \"fr\",\n    \"limit\":5,\n    \"offset\":0,\n    \"order\":\"date_desc\"\n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get last 5 reviews with rate = 4 for a product</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bf47a95-7e17-459c-a75f-ab226d2a54f3"},{"name":"Get the average rate for one or more product(s)","id":"5a85a549-25af-4de4-b28c-e531593717ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"average\",\n    \"product\": [\"{{ID_PRODUCT}}\"],\n    \"idWebsite\": \"{{IDWEBSITE}}\",\n    \"plateforme\": \"{{PLATFORM}}\", \n    \"field\": \"{{FIELD}}\", \n    \"sign\": \"{{SIGN}}\",\n    \"compare\" : \"{{COMPARE}}\", \n    \"sandbox_url\" : \"{{SANDBOX_URL}}\" \n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get the average rate for one or more product(s)</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a85a549-25af-4de4-b28c-e531593717ea"},{"name":"Example: Get average of one product","id":"338f8f1b-4379-40a2-8893-080fe5234679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"average\",\n    \"product\": [\"50404\"],\n    \"idWebsite\": \"369fdcb5-631a-b004-7967-d48e238dcfbb\",\n    \"plateforme\": \"fr\"\n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get average of one product</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"338f8f1b-4379-40a2-8893-080fe5234679"},{"name":"Example: Get average of two products","id":"6d8ab05a-28b6-48b3-9e8f-6bbbc046619a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"average\",\n    \"product\": [\"50404\",\"999\"],\n    \"idWebsite\": \"369fdcb5-631a-b004-7967-d48e238dcfbb\",\n    \"plateforme\": \"fr\"\n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get average of two products</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d8ab05a-28b6-48b3-9e8f-6bbbc046619a"},{"name":"Example: Get average of all products","id":"59a8f654-d032-4d6f-8f97-c31def4c2a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"average\",\n    \"product\": [\"all\"],\n    \"idWebsite\": \"369fdcb5-631a-b004-7967-d48e238dcfbb\",\n    \"plateforme\": \"fr\"\n}"},"url":"https://awsapis3.netreviews.eu/product","description":"<p>Get average of all products</p>\n","urlObject":{"protocol":"https","path":["product"],"host":["awsapis3","netreviews","eu"],"query":[],"variable":[]}},"response":[],"_postman_id":"59a8f654-d032-4d6f-8f97-c31def4c2a32"}],"id":"9601e723-ee12-4e50-9ffb-6d4389a9080e","description":"<h3 id=\"description\">Description</h3>\n<p>\nThis API allows you to retrieve reviews and ratings related to your products. And also to sort or filter the feed. </p>\n<p><i>\nThis API requires the activation of the \"Product API\" functionality with JSON file formats within your Verified Reviews back office. \n</i> \n</p><p>\n\n</p><h3 id=\"attributs\">Attributs</h3>\n<table>\n    <thead>\n        <th>Name</th>\n        <th>Type</th>\n        <th>Required</th>\n        <th>Description</th>\n        <th>Exemple</th>\n    </thead>  \n    <tr>\n        <td>query</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Information you want to get: list of reviews or average</td>\n        <td><i>reviews</i></td>\n    </tr>   \n    <tr>\n        <td>idWebsite</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>Your Verified Reviews idWebsite</td>\n        <td><i>369fdcb5-xxxx-xxxx-xxxx-d48e238dcfbb</i></td>\n    </tr>       \n    <tr>\n        <td>product</td>\n        <td>array of string</td>\n        <td>Yes</td>\n        <td>Product(s) reference(s) you want to query. If you want all, use [\"all\"]</td>\n        <td><i>['156','2569']</i></td>\n    </tr>       \n    <tr>\n        <td>order</td>\n        <td>string</td>\n        <td>No</td>\n        <td>This param is used either to sort the feed.<br /> \"date_asc\"/ \"date_desc\"/ \"rate_asc\"/ \"rate_desc\" / \"most_helpful\"</td>\n        <td><i>date_asc</i></td>\n    </tr>   \n    <tr>\n        <td>limit</td>\n        <td>int</td>\n        <td>No</td>\n        <td>Number of reviews per page</td>\n        <td><i>100</i></td>\n    </tr>   \n    <tr>\n        <td>offset</td>\n        <td>int</td>\n        <td>No</td>\n        <td>Page number</td>\n        <td><i>0 (first)</i></td>\n    </tr>   \n    <tr>\n        <td>field</td>\n        <td>string </td>\n        <td>No</td>\n        <td>Data used to filter</td>\n        <td><i>rate</i></td>\n    </tr>   \n    <tr>\n        <td>sign</td>\n        <td>string </td>\n        <td>No</td>\n        <td>Operator used to filter. <br />equal, inf (&lt;) or sup (&gt;)</td>\n        <td><i>equal</i></td>\n    </tr>\n    <tr>\n        <td>compare</td>\n        <td>string</td>\n        <td>No. </td>\n        <td>Value to compare</td>\n        <td><i>4</i></td>\n    </tr>   \n    <tr>\n        <td>plateforme</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>First two letter of your country lang. </td>\n        <td><i>fr</i></td>\n    </tr>   \n    <tr>\n        <td>sandbox_url</td>\n        <td>string</td>\n        <td>No</td>\n        <td>Url of your sandbox if you have a staging environment</td>\n        <td><i>https://www.sandbox-xxx.dev</i></td>\n    </tr>   \n    \n</table>\n","event":[{"listen":"prerequest","script":{"id":"4b4ebf99-60bd-41fc-9cdc-2f9c4fae7d89","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e4803f1c-5c5b-4857-af57-fbb2103cc345","type":"text/javascript","exec":[""]}}],"_postman_id":"9601e723-ee12-4e50-9ffb-6d4389a9080e"}],"event":[{"listen":"prerequest","script":{"id":"77a3e446-de08-497c-82ee-67b83d9d5265","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1d0a8597-4ee8-4bdb-9440-303f281e11ce","type":"text/javascript","exec":[""]}}]}