API/WS ressources

  • • Please download the archive
  • • Extract the archive and import the files as Collection and Environment
  • • Now, you have to edit the environment variables to set up your own auth key and order data
<?PHP

    $ID_WEBSITE = "12gthd5g-erg1-hdgy-yfh5-gfdf12548vfd"; // Please fill in the ID of your website "Verified Reviews"
    $SECURE_KEY = "ghsyehf5-hfyd-gets-195g-hgets125dhre"; // Please fill in the Secret key of your website "Verified Reviews"

    $URL_AV = "http://www.avis-verifies.com/index.php";
    
    // Use the proper URL related to your account
    // $URL_AV = "http://www.verified-reviews.com/index.php";
    // $URL_AV = "http://www.recensioni-verificate.com/index.php";
    // $URL_AV = "http://www.opinioes-verificadas.com/index.php";
    // $URL_AV = "http://www.recensioni-verificate.com/index.php";
    // $URL_AV = "http://www.echte-bewertungen.com/index.php";
    // $URL_AV = "http://www.opiniones-verificadas.com/index.php";

    /**
    *
    * Send a request
    *
    **/

    echo "<br><br>== API Notification ==<br>";
    $descNotification =  array(
            'query'            => 'pushCommandeSHA1',    //Required
            'order_ref'        => 'order-12125',         //Required - Reference order 
            'email'            => 'john@doe.com',        //Required - Client email
            'lastname'         => 'Doe',                 //Required -  Client lastname
            'firstname'        => 'John',                //Required -  Client firstname
            'order_date'       => '2015-05-17 09:39:00', //Required - Format YYYY-MM-JJ HH:MM:SS
            'delay'            => '0',                   //0=Immediately / ‘n’ days between 1 and 30 days
            'PRODUCTS'         => array(
                0=>array(
                    'id_product'           => 'ref001', //Required - Product Id
                    'name_product'         => 'My Product ref001', //Required - Product Name
                    'url_product'          =>  'http://www.mywebsite.com/products/ref001.html',
                    'url_product_image'    =>  'http://www.mywebsite.com/img/products/ref001.jpg',
                    'GTIN_UPC'             => 'GTIN_UPC',
                    'GTIN_EAN'             => 'GTIN_EAN',
                    'GTIN_JAN'             => 'GTIN_JAN',
                    'GTIN_ISBN'            => 'GTIN_ISBN',
                    'MPN'                  => 'MPN',
                    'sku'                  => 'sku',
                    'brand_name'           => 'brand_name',
                    ),
                1=>array(
                    'id_product'      => 'ref002', //Required - Product Id
                    'name_product'    => 'My Product ref002', //Required - Product Name
                    )
            ),
            'sign'             => '',
    );

    $descNotification['sign']=SHA1($descNotification['query'].$descNotification['order_ref'].$descNotification['email'].$descNotification['lastname'].$descNotification['firstname'].$descNotification['order_date'].$descNotification['delay'].$SECURE_KEY);

    $encryptedNotification=http_build_query(
        array(
            'idWebsite' => $ID_WEBSITE,
            'message' => json_encode($descNotification)
        )
    );

    $postNotification = array('http' =>
        array(
            'method'  => 'POST',
            'header'  => 'Content-type: application/x-www-form-urlencoded',
            'content' => $encryptedNotification
        )
    );

    $contextNotification = stream_context_create($postNotification);

    $resultNotification = file_get_contents($URL_AV.'?action=act_api_notification_sha1&type=json2', false, $contextNotification);
    

    echo $resultNotification,"<br><br>\n";
    
    $resultNotification = json_decode($resultNotification,true);

    echo "==RETURN==[";
    echo $resultNotification['return'];
    echo "]<br><br>\n";
    echo $resultNotification['debug'];

    if($resultNotification['return'] == 1) {
        echo "==> OK <br>";
        // Success
    } else {
        echo "==> ERROR  <br>";
        // Error, please check the array returned
    }
?>
using RestSharp;
using System;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Text.Json;

namespace avrequest
{
    class Program
    {
        private const string ID_WEBSITE = "12gthd5g-erg1-hdgy-yfh5-gfdf12548vfd"; // Please fill in the ID of your website "Verified Reviews"
        private const string SECRET_KEY = "ghsyehf5-hfyd-gets-195g-hgets125dhre"; // Please fill in the Secret key of your website "Verified Reviews"
        private const string URL = "http://www.avis-verifies.com/index.php";
        // Use the proper URL related to your account
        // $URL_AV = "http://www.verified-reviews.com/index.php";
        // $URL_AV = "http://www.recensioni-verificate.com/index.php";
        // $URL_AV = "http://www.opinioes-verificadas.com/index.php";
        // $URL_AV = "http://www.recensioni-verificate.com/index.php";
        // $URL_AV = "http://www.echte-bewertungen.com/index.php";
        // $URL_AV = "http://www.opiniones-verificadas.com/index.php";

        private const string QUERY = "pushCommandeSHA1"; // mark the order creation in the query


        public static void orderReviewQuery(string order_ref, string firstname, string lastname, string email, string order_date, string delay)
        {
            try
            {

                // Loading classes to do a query
                ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
                var client = new RestClient(URL);
                var request = new RestRequest();
                request.Method = Method.POST;


                // making the signature to authentificate the connexion
                string input = $"{QUERY}{order_ref}{email}{lastname}{lastname}{order_date}{delay}{SECRET_KEY}";
                var hash = new SHA1Managed().ComputeHash(Encoding.UTF8.GetBytes(input));
                string sign = string.Concat(hash.Select(b => b.ToString("x2")));

                var product = new
                {
                    id_product = "ref001",              //Required - Product Id
                    name_product = "My Product ref001", //Required - Product Name
                    url_product = "http://www.mywebsite.com/products/ref001.html",
                    url_product_image = "http://www.mywebsite.com/img/products/ref001.jpg",
                    GTIN_UPC = "GTIN_UPC",
                    GTIN_EAN = "GTIN_EAN",
                    GTIN_JAN = "GTIN_JAN",
                    GTIN_ISBN = "GTIN_ISBN",
                    MPN = "MPN",
                    sku = "sku",
                    brand_name = "brand_name"
                };

                var message = new
                {
                    query = QUERY,             //Required
                    order_ref = order_ref,     //Required - Reference order
                    firstname = firstname,     //Required - Client firstname
                    lastname = lastname,       //Required - Client lastname
                    email = email,             //Required - Client email
                    order_date = order_date,   //Required - Format YYYY-MM-JJ
                    sign = sign,               //Required
                    delay = 0,                 //Required
                    PRODUCTS = new
                    {
                        product
                    }
                };

                string jsonEncoded = JsonSerializer.Serialize(message);

                request.AddParameter("application/x-www-form-urlencoded", "idWebsite=" + ID_WEBSITE + "&message=" + jsonEncoded, ParameterType.RequestBody);
                var response = client.Execute(request);
                Console.WriteLine(response.Content);
            }
            catch (Exception ex)
            {
                Console.WriteLine("catch!");
                Console.WriteLine(ex.ToString());
            }

        }



        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            orderReviewQuery("order-12125", "John", "Doe", "john@doe.com", "2015-05-17 09:39:00", "0");
            Console.WriteLine("end!");
        }
    }
}
require "uri"
require "net/http"
require "json"
require "digest"

class AvisVerifiesService
  def initialize(target)
    @secret_key = ENV["AVIS_VERIFIES_SECURE_KEY"]
    @avis_verifies_url = ENV["AVIS_VERIFIES_URL"]
    @id_website = ENV["AVIS_VERIFIES_ID_WEBSITE"]
    @order_ref = target.id.to_s
    @first_name = target.first_name
    @last_name = target.last_name
    @email = target.email
    @order_date = target.created_at.strftime("%F")
    @query = "pushCommandeSHA1"
    @sign = create_sign(@query, @order_ref, @email, @last_name, @first_name, @order_date, @secret_key)
  end
  

  def send_message
    url = URI(@avis_verifies_url)
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE
    request = Net::HTTP::Post.new(url)
    request["accept"] = "application/json"
    request["content-type"] = "application/x-www-form-urlencoded"
    request.body = URI.encode_www_form([["idWebsite", @id_website.to_s], ["message", new_message()]])
    response = http.request(request)
  end
 

  def new_message
    {
      query: @query,
      order_ref: @order_ref,
      firstname: @first_name,
      lastname: @last_name,
      email: @email,
      order_date: @order_date,
      delay: @delay,
      sign: @sign,
      products: {
        "0": {
          id_product: "100",
          name_product: "My Product 100",
        },
      },
    }.to_json
  end
 

  private
 

  def create_sign(query, order_ref, email, last_name, first_name, order_date, secret_key)
    Digest::SHA1.hexdigest(query + order_ref + email + last_name + first_name + order_date + secret_key)
  end

end
email;order_ref;order_date;delay;lastname;firstname;id_product;name_product;url_product;url_image_product;gtin_ean;sku
"john@doe.com";"ABE1449293";"2016-04-11 11:39:10";"14";"DOE";"John";"KI032541449";"My Product name KI032541449";"https://www.mywebsite.com/products/KI032541449.html";"https://www.mywebsite.com/products/KI032541449.jpg";"879541565";"45155214"
"john@doe.com";"ABE1449293";"2016-04-11 11:39:10";"14";"DOE";"John";"KI032541449";"My Product name PL744144";"https://www.mywebsite.com/products/PL744144.html";"https://www.mywebsite.com/products/PL744144.jpg";"478215";"965878524"
"ben@carter.com";"ABE1449254";"2016-04-11 11:42:10";"14";"CARTER";"Ben";"KI032541166";"My Product name KI032541166";"https://www.mywebsite.com/products/KI032541166.html";"https://www.mywebsite.com/products/KI032541166.jpg";"546315461";"4514541"
email;order_ref;order_date;delay;lastname;firstname
"john@doe.com";"ABE1449293";"2016-04-11 11:39:10";"14";"DOE";"John"
"john@doe.com";"ABE1449293";"2016-04-11 11:39:10";"14";"DOE";"John"
"ben@carter.com";"ABE1449254";"2016-04-11 11:42:10";"14";"CARTER";"Ben"
email;order_ref;order_date;delay;lastname;firstname;canal;id_shop;name_shop;id_product;name_product;url_product;url_image_product;gtin_ean;sku
john@doe.com;ABE1449293;11/04/2016 11:39;14;DOE;John;offline;10;My Shop 10;"KI032541449""";My Product name KI032541449;https://www.mywebsite.com/products/KI032541449.html;https://www.mywebsite.com/products/KI032541449.jpg;879541565;45155214
john@doe.com;ABE1449293;11/04/2016 11:39;14;DOE;John;offline;10;My Shop 10;KI032541449;My Product name PL744144;https://www.mywebsite.com/products/PL744144.html;https://www.mywebsite.com/products/PL744144.jpg;478215;965878524
ben@carter.com;ABE1449254;11/04/2016 11:42;14;CARTER;Ben;online;;;KI032541166;My Product name KI032541166;https://www.mywebsite.com/products/KI032541166.html;https://www.mywebsite.com/products/KI032541166.jpg;546315461;4514541
email;order_ref;order_date;delay;lastname;firstname;canal;id_shop;name_shop
john@doe.com;ABE1449293;11/04/2016 11:39;14;DOE;John;offline;10;My Shop 10
john@doe.com;ABE1449293;11/04/2016 11:39;14;DOE;John;offline;10;My Shop 10
ben@carter.com;ABE1449254;11/04/2016 11:42;14;CARTER;Ben;online;;
<?PHP
 
    $idWebsite      = "aaa5dfqs-sdqs35f-dqsf-365f-xwvf-36543s6"; // Please fill in the ID of your website "Verified Reviews"
    $secretKey      = "qsdf78-df8g7-54gsdf-d3sf5g4-coisdfgjpoi"; // Please fill in the Secret key of your website "Verified Reviews"
    $idProduct      = "2ef2edab-8e40-fe74-c589-538665740278"; // Please fill the product reviews id
    $ip             = "127.0.0.1"; // Please fill the user ip address
    $fingerPrint    = "5q4sdf35qsd4f36"; // Please fill the user fingerPrint or user unique id
    $vote           = 1; // Please fill the user vote (1 = yes / 0 = no)

    // Generating signature
    $sign = sha1($idWebsite.$idProduct.$ip.$secretKey); 

    // Plateform URL
    $URL_AV = "http://www.avis-verifies.com/index.php";
     
    // Use the proper URL related to your account
    // $URL_AV = "http://www.verified-reviews.com/index.php";
    // $URL_AV = "http://www.recensioni-verificate.com/index.php";
    // $URL_AV = "http://www.opinioes-verificadas.com/index.php";
    // $URL_AV = "http://www.recensioni-verificate.com/index.php";
    // $URL_AV = "http://www.echte-bewertungen.com/index.php";
    // $URL_AV = "http://www.opiniones-verificadas.com/index.php";
 
    /**
    *
    * Create request
    *
    **/
 
    $parameters = array(
        'method'        => 'create',
        'idWebsite'     => $idWebsite,
        'idProduct'     => $idProduct,
        'isHelpful'     => $vote,
        'ip'            => $ip,
        'fingerPrint'   => $fingerPrint,
        'sign'          => $sign,
    );

    $post = array('http' =>
        array(
            'method'  => 'POST',
            'header'  => 'Content-type: application/x-www-form-urlencoded',
            'content' => http_build_query($parameters)
        )
    );
 
    $context = stream_context_create($post);
    $content = file_get_contents($URL_AV.'?action=act_api_product_reviews_helpful', false, $context);
    if (!empty($content)) {
        if (json_decode($content)) {
            $jsonContent = json_decode($content);
            print_r($jsonContent);

            // print_r result :
            // stdClass Object
            // (
            //     [success] => 1
            //     [method] => create
            //     [idWebsite] => aaa5dfqs-sdqs35f-dqsf-365f-xwvf-36543s6
            //     [idProduct] => 2ef2edab-8e40-fe74-c589-538665740278
            //     [fingerPrint] => 5q4sdf35qsd4f36
            //     [isHelpful] => 1
            //     [isActive] => 1
            //     [message] => Merci, votre vote sera bientôt publié.
            // )

        }
    }



?>

Website Reviews Synchro files

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

action	review_id	email	lastname	firstname	review_date	review	rate	order_ref	nb_comments	date	author	comment	date	author	comment	...
DELETE	3bc6e7a5-8e01-2654-b557-63b52e460f43	john@doe.com	Doe	John	2016-04-11T09:56:56.0000000+01:00	"I have found everything I need ! Great website."	5	REF_test	0
NEW	1a90b80b-b89f-7424-e988-d35c346f1b69	john@doe.com	Doe	John	2016-04-12T09:56:34.0000000+01:00	"Great Website !"	1	REF_test	0
UPDATE	83e2793e-c8bf-aa94-c1fb-27ff6911260a	john@doe.com	Doe	John	2016-04-12T09:56:44.0000000+01:00	"I didn't find everything I need and the pages are very slow ..."	3	REF_test	1	2016-04-12T10:35:36.0000000+01:00	2	"Et saludo John "
NEW	ce0b25e9-2e59-be84-7d56-21ba374fa8a4	john@doe.com	Doe	John	2018-08-29T14:25:22.0000000+02:00	"I'm not happy"	1	REF_test	2	2018-08-29T14:29:08.0000000+02:00	2	"why are not you happy ?"	2018-08-29T14:30:02.0000000+02:00	3	"I don't know what to say."

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

<?xml version="1.0" encoding="utf-8"?>
<all_reviews mode="diff">
  <review action="DELETE">
    <review_id><![CDATA[3bc6e7a5-8e01-2654-b557-63b52e460f43]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-11T09:56:56.0000000+01:00]]></review_date>
    <review><![CDATA[I have found everything I need ! Great website.]]></review>
    <rate><![CDATA[5]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
  </review>
  <review action="NEW">
    <review_id><![CDATA[1a90b80b-b89f-7424-e988-d35c346f1b69]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-12T09:56:34.0000000+01:00]]></review_date>
    <review><![CDATA[Great Website !]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
  </review>
  <review action="UPDATE">
    <review_id><![CDATA[83e2793e-c8bf-aa94-c1fb-27ff6911260a]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-12T09:56:44.0000000+01:00]]></review_date>
    <review><![CDATA[I didn't find everything I need and the pages are very slow ...]]></review>
    <rate><![CDATA[3]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <moderation>
      <exchange>
        <date><![CDATA[2016-04-12T10:35:36.0000000+01:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[Et saludo John ]]></comment>
      </exchange>
    </moderation>
  </review>
  <review action="NEW">
    <review_id><![CDATA[ce0b25e9-2e59-be84-7d56-21ba374fa8a4]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2018-08-29T14:25:22.0000000+02:00]]></review_date>
    <review><![CDATA[I'm not happy]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <moderation>
      <exchange>
        <date><![CDATA[2018-08-29T14:29:08.0000000+02:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[why are not you happy ?]]></comment>
      </exchange>
      <exchange>
        <date><![CDATA[2018-08-29T14:30:02.0000000+02:00]]></date>
        <author><![CDATA[3]]></author>
        <comment><![CDATA[I don't know what to say.]]></comment>
      </exchange>
    </moderation>
  </review>
</all_reviews>

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

action	review_id	email	lastname	firstname	review_date	review	rate	order_ref	info1	info2	nb_comments	date	author	comment	date	author	comment	...
DELETE	3bc6e7a5-8e01-2654-b557-63b52e460f43	john@doe.com	Doe	John	2016-04-11T09:56:56.0000000+01:00	"I have found everything I need ! Great website."	5	REF_test	client-124154	4	0
NEW	1a90b80b-b89f-7424-e988-d35c346f1b69	john@doe.com	Doe	John	2016-04-12T09:56:34.0000000+01:00	"Great Website !"	1	client-1564437	3	0
UPDATE	83e2793e-c8bf-aa94-c1fb-27ff6911260a	john@doe.com	Doe	John	2016-04-12T09:56:44.0000000+01:00	"I didn't find everything I need and the pages are very slow ..."	3	REF_test	client-1245123	5	1	2016-04-12T10:35:36.0000000+01:00	2	"Et saludo John "
NEW	ce0b25e9-2e59-be84-7d56-21ba374fa8a4	john@doe.com	Doe	John	2018-08-29T14:25:22.0000000+02:00	"I'm not happy"	1	REF_test	client-1231245	3	2	2018-08-29T14:29:08.0000000+02:00	2	"why are not you happy ?"	2018-08-29T14:30:02.0000000+02:00	3	"I don't know what to say."

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

<?xml version="1.0" encoding="utf-8"?>
<all_reviews mode="diff">
  <review action="DELETE">
    <review_id><![CDATA[3bc6e7a5-8e01-2654-b557-63b52e460f43]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-11T09:56:56.0000000+01:00]]></review_date>
    <review><![CDATA[I have found everything I need ! Great website.]]></review>
    <rate><![CDATA[5]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <info1><![CDATA[client-124154]]></info1>
    <info2><![CDATA[4]]></info2>
  </review>
  <review action="NEW">
    <review_id><![CDATA[1a90b80b-b89f-7424-e988-d35c346f1b69]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-12T09:56:34.0000000+01:00]]></review_date>
    <review><![CDATA[Great Website !]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <info1><![CDATA[client-1564437]]></info1>
    <info2><![CDATA[3]]></info2>
  </review>
  <review action="UPDATE">
    <review_id><![CDATA[83e2793e-c8bf-aa94-c1fb-27ff6911260a]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2016-04-12T09:56:44.0000000+01:00]]></review_date>
    <review><![CDATA[I didn't find everything I need and the pages are very slow ...]]></review>
    <rate><![CDATA[3]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <info1><![CDATA[client-1245123]]></info1>
    <info2><![CDATA[5]]></info2>
    <moderation>
      <exchange>
        <date><![CDATA[2016-04-12T10:35:36.0000000+01:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[Et saludo John ]]></comment>
      </exchange>
    </moderation>
  </review>
  <review action="NEW">
  <review_id><![CDATA[ce0b25e9-2e59-be84-7d56-21ba374fa8a4]]></review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[John]]></firstname>
    <review_date><![CDATA[2018-08-29T14:25:22.0000000+02:00]]></review_date>
    <review><![CDATA[I'm not happy]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <info1><![CDATA[client-1231245]]></info1>
    <info2><![CDATA[3]]></info2>
    <moderation>
      <exchange>
        <date><![CDATA[2018-08-29T14:29:08.0000000+02:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[why are not you happy ?]]></comment>
      </exchange>
      <exchange>
        <date><![CDATA[2018-08-29T14:30:02.0000000+02:00]]></date>
        <author><![CDATA[3]]></author>
        <comment><![CDATA[I don't know what to say.]]></comment>
      </exchange>
    </moderation>
  </review>
</all_reviews>

Products Reviews Synchro files

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

action	review_id	product_review_id	order_ref	id_product	review_date	review	rate	lastname	firstname	email	nb_comments	date	author	comment	date	author	comment	...
NEW	1a90b80b-b89f-7424-e988-d35c346f1b69	f8c04462-e4ec-7b04-bdb7-2ac836260988	REF_test	test-developer0	2016-04-12T09:50:41.0000000+01:00	"Great Product !"	4	Doe	john	john@doe.com	0
DELETE	83e2793e-c8bf-aa94-c1fb-27ff6911260a	56afe601-21c5-9164-c9c1-963381dc5515	REF_test	test-developer0	2016-04-12T09:51:34.0000000+01:00	"When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged."	4	Doe	john	john@doe.com	0
UPDATE	3bc6e7a5-8e01-2654-b557-63b52e460f43	5cf05e04-3cd6-c744-699f-4eaf12fe026a	REF_test	test-developer0	2016-04-12T09:52:08.0000000+01:00	"I have not yet received this. It was ordered months ago..."	2	Doe	john	john@doe.com	1	2016-04-12T10:11:12.0000000+01:00	2	"Et saludo john "
NEW	ce0b25e9-2e59-be84-7d56-21ba374fa8a4	b6f5a477-953c-b8a4-358c-7d2bd4aa69de	REF_test	test-developer0	2018-08-29T14:25:22.0000000+02:00	"I'm not happy"	1	Doe	john	john@doe.com	2	2018-08-29T15:31:14.0000000+02:00	2	"why are not you happy ?"	2018-08-29T15:35:17.0000000+02:00	3	"I don't know what to say."

This example contains NEW, UPDATE and DELETE examples. Please report to the API documentation for more informations.

<?xml version="1.0" encoding="utf-8"?>
<all_reviews mode="diff">
  <review action="NEW">
    <review_id><![CDATA[1a90b80b-b89f-7424-e988-d35c346f1b69]]></review_id>
    <product_review_id><![CDATA[f8c04462-e4ec-7b04-bdb7-2ac836260988]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:50:41.0000000+01:00]]></review_date>
    <review><![CDATA[Great Product !]]></review>
    <rate><![CDATA[4]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
  </review>
  <review action="DELETE">
    <review_id><![CDATA[83e2793e-c8bf-aa94-c1fb-27ff6911260a]]></review_id>
    <product_review_id><![CDATA[56afe601-21c5-9164-c9c1-963381dc5515]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:51:34.0000000+01:00]]></review_date>
    <review><![CDATA[When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged.]]></review>
    <rate><![CDATA[4]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
  </review>
  <review action="UPDATE">
    <review_id><![CDATA[3bc6e7a5-8e01-2654-b557-63b52e460f43]]></review_id>
    <product_review_id><![CDATA[5cf05e04-3cd6-c744-699f-4eaf12fe026a]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:52:08.0000000+01:00]]></review_date>
    <review><![CDATA[I have not yet received this. It was ordered months ago...]]></review>
    <rate><![CDATA[2]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <moderation>
      <exchange>
        <date><![CDATA[2016-04-12T10:11:12.0000000+01:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[Et saludo john ]]></comment>
      </exchange>
    </moderation>
  </review>
  <review action="NEW">
    <review_id><![CDATA[ce0b25e9-2e59-be84-7d56-21ba374fa8a4]]></review_id>
    <product_review_id><![CDATA[b6f5a477-953c-b8a4-358c-7d2bd4aa69de]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2018-08-29T14:25:22.0000000+02:00]]></review_date>
    <review><![CDATA[I'm not happy]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <moderation>
      <exchange>
        <date><![CDATA[2018-08-29T15:31:14.0000000+02:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[why are not you happy ?]]></comment>
      </exchange>
      <exchange>
        <date><![CDATA[2018-08-29T15:35:17.0000000+02:00]]></date>
        <author><![CDATA[3]]></author>
        <comment><![CDATA[I don't know what to say.]]></comment>
      </exchange>
    </moderation>
  </review>
</all_reviews>

This example contains NEW, UPDATE and DELETE examples. Additional data are info1 and info2. Please report to the API documentation for more informations.

action	review_id	product_review_id	order_ref	id_product	review_date	review	rate	lastname	firstname	email	info1	info2	nb_comments	date	author	comment	date	author	comment	...
NEW	1a90b80b-b89f-7424-e988-d35c346f1b69	f8c04462-e4ec-7b04-bdb7-2ac836260988	REF_test	test-developer0	2016-04-12T09:50:41.0000000+01:00	"Great Product !"	4	Doe	john	john@doe.com	product-547852	3	1
DELETE	83e2793e-c8bf-aa94-c1fb-27ff6911260a	56afe601-21c5-9164-c9c1-963381dc5515	REF_test	test-developer0	2016-04-12T09:51:34.0000000+01:00	"When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged."	4	Doe	john	john@doe.com	product-78354278	4	1
UPDATE	3bc6e7a5-8e01-2654-b557-63b52e460f43	5cf05e04-3cd6-c744-699f-4eaf12fe026a	REF_test	test-developer0	2016-04-12T09:52:08.0000000+01:00	"I have not yet received this. It was ordered months ago..."	2	Doe	john	john@doe.com	product-01264154	5	1	2016-04-12T10:11:12.0000000+01:00	2	"Et saludo john "
NEW	ce0b25e9-2e59-be84-7d56-21ba374fa8a4	b6f5a477-953c-b8a4-358c-7d2bd4aa69de	REF_test	test-developer0	2018-08-29T14:25:22.0000000+02:00	"I'm not happy"	1	Doe	john	john@doe.com	product-298948	2	2	2018-08-29T15:31:14.0000000+02:00	2	"why are not you happy ?"	2018-08-29T15:35:17.0000000+02:00	3	"I don't know what to say."

This example contains NEW, UPDATE and DELETE examples. Additional data are info1 and info2. Please report to the API documentation for more informations.

<?xml version="1.0" encoding="utf-8"?>
<all_reviews mode="diff">
  <review action="NEW">
    <review_id><![CDATA[1a90b80b-b89f-7424-e988-d35c346f1b69]]></review_id>
    <product_review_id><![CDATA[f8c04462-e4ec-7b04-bdb7-2ac836260988]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:50:41.0000000+01:00]]></review_date>
    <review><![CDATA[Great Product !]]></review>
    <rate><![CDATA[4]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <info1><![CDATA[product-547852]]></info1>
    <info2><![CDATA[3]]></info2>
  </review>
  <review action="DELETE">
    <review_id><![CDATA[83e2793e-c8bf-aa94-c1fb-27ff6911260a]]></review_id>
    <product_review_id><![CDATA[56afe601-21c5-9164-c9c1-963381dc5515]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:51:34.0000000+01:00]]></review_date>
    <review><![CDATA[When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged.]]></review>
    <rate><![CDATA[4]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <info1><![CDATA[product-78354278]]></info1>
    <info2><![CDATA[4]]></info2>
  </review>
  <review action="UPDATE">
    <review_id><![CDATA[3bc6e7a5-8e01-2654-b557-63b52e460f43]]></review_id>
    <product_review_id><![CDATA[5cf05e04-3cd6-c744-699f-4eaf12fe026a]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2016-04-12T09:52:08.0000000+01:00]]></review_date>
    <review><![CDATA[I have not yet received this. It was ordered months ago...]]></review>
    <rate><![CDATA[2]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <info1><![CDATA[product-01264154]]></info1>
    <info2><![CDATA[5]]></info2>
    <moderation>
      <exchange>
        <date><![CDATA[2016-04-12T10:11:12.0000000+01:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[Et saludo john ]]></comment>
      </exchange>
    </moderation>
  </review>
  <review action="NEW">
    <review_id><![CDATA[ce0b25e9-2e59-be84-7d56-21ba374fa8a4]]></review_id>
    <product_review_id><![CDATA[b6f5a477-953c-b8a4-358c-7d2bd4aa69de]]></product_review_id>
    <email><![CDATA[john@doe.com]]></email>
    <lastname><![CDATA[Doe]]></lastname>
    <firstname><![CDATA[john]]></firstname>
    <review_date><![CDATA[2018-08-29T14:25:22.0000000+02:00]]></review_date>
    <review><![CDATA[I'm not happy]]></review>
    <rate><![CDATA[1]]></rate>
    <order_ref><![CDATA[REF_test]]></order_ref>
    <product_ref><![CDATA[test-developer0]]></product_ref>
    <info1><![CDATA[product-298948]]></info1>
    <info2><![CDATA[2]]></info2>
    <moderation>
      <exchange>
        <date><![CDATA[2018-08-29T15:31:14.0000000+02:00]]></date>
        <author><![CDATA[2]]></author>
        <comment><![CDATA[why are not you happy ?]]></comment>
      </exchange>
      <exchange>
        <date><![CDATA[2018-08-29T15:35:17.0000000+02:00]]></date>
        <author><![CDATA[3]]></author>
        <comment><![CDATA[I don't know what to say.]]></comment>
      </exchange>
    </moderation>
  </review>
</all_reviews>

Website Reviews Import files (mod_import_commande/mod_test_import)

This example contains needed data for a website review import.

email;lastname;firstname;order_date;review_date;review;rate;order_ref;source;nb_comments;date;author;comment;date_1;author_2;comment_3;...
john@doe.com;Doe;John;09/12/2019 08:00;11/12/2019 09:56;I have found everything I need ! Great website.;5;REF_test;1;0;;;;;;;
john@doe.com;Doe;John;01/12/2019 12:00;12/12/2019 09:56;Great Website !;1;REF_test;0;;;;;;;;
john@doe.com;Doe;John;12/12/2019 07:56;12/12/2019 09:56;I didn't find everything I need and the pages are very slow ...;3;REF_test;1;1;12/12/2019 10:35;2;Et saludo John ;;;;
john@doe.com;Doe;John;12/03/2019 09:00;13/12/2019 14:25;I'm not happy;1;REF_test;1;2;13/12/2019 14:29;2;why are not you happy ?;13/12/2019 14:30;3;I don't know what to say.;

This example contains needed data for a website review import with extra data.

email;lastname;firstname;order_date;review_date;review;rate;order_ref;info1;info2;source;nb_comments;date;author;comment;date_1;author_2;comment_3;...
john@doe.com;Doe;John;09/12/2019 12:00;11/12/2019 09:56;I have found everything I need ! Great website.;5;REF_test;yes;info2_value;1;0;;;;;;;
john@doe.com;Doe;John;01/12/2019 12:00;12/12/2019 09:56;Great Website !;1;REF_test;no;info2_value;0;;;;;;;;
john@doe.com;Doe;John;12/03/2019 07:56;12/12/2019 09:56;I didn't find everything I need and the pages are very slow ...;3;REF_test;yes;info2_value;1;1;12/12/2019 10:35;2;Et saludo John ;;;;
john@doe.com;Doe;John;12/03/2019 09:00;13/12/2019 14:25;I'm not happy;1;REF_test;no;info2_value;1;2;13/12/2019 14:29;2;why are not you happy ?;13/12/2019 14:30;3;I don't know what to say.;

Products Reviews Import files (mod_import_commande/mod_test_import)

This example contains needed data for product reviews import with default data.

order_ref;id_product;order_date;review_date;review;rate;lastname;firstname;email;product_ref;name_product;brand_name;url_product;url_image_product;GTIN_UPC;GTIN_EAN;GTIN_JAN;MPN;sku;source;nb_comments;date;author;comment;date_1;author_2;comment_3;...
REF_test;test-developer0;11/12/2019 09:50;12/12/2019 09:50;Great Product !;4;Doe;john;john@doe.com;ABC_01;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;1234;interne;0;;;;;;;
REF_test;test-developer0;11/12/2019 09:51;12/12/2019 09:51;When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged.;4;Doe;john;john@doe.com;ABC_02;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;;interne;0;;;;;;;
REF_test;test-developer0;11/12/2019 09:52;12/12/2019 09:52;I have not yet received this. It was ordered months ago...;2;Doe;john;john@doe.com;ABC_03;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;;interne;1;12/12/2019 10:11;2;Et saludo john ;;;;
REF_test;test-developer0;11/12/2019 14:25;12/12/2019 14:25;I'm not happy;1;Doe;john;john@doe.com;ABC_12;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;;interne;2;29/12/2019 15:31;2;why are not you happy ?;29/12/2019 15:35;3;I don't know what to say.;

This example contains needed data for product reviews import with extra data.

order_ref;id_product;order_date;review_date;review;rate;lastname;firstname;email;product_ref;name_product;brand_name;url_product;url_image_product;GTIN_UPC;GTIN_EAN;GTIN_JAN;MPN;info1;info2;nb_comments;date;author;comment;date_1;author_2;comment_3;...
REF_test;test-developer0;11/12/2019 09:50;12/12/2019 09:50;Great Product !;4;Doe;john;john@doe.com;ABC_01;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;product-547852;3;1;;;;;;;
REF_test;test-developer0;11/12/2019 09:51;12/12/2019 09:51;When inspecting them, 5 out of the 72 I ordered have small chips in the rim. they were packed very well for shipping, so i suspect they were damaged before being packaged.;4;Doe;john;john@doe.com;ABC_02;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;product-78354278;4;1;;;;;;;
REF_test;test-developer0;11/12/2019 09:52;12/12/2019 09:52;I have not yet received this. It was ordered months ago...;2;Doe;john;john@doe.com;ABC_03;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;product-01264154;5;1;12/12/2019 10:11;2;Et saludo john ;;;;
REF_test;test-developer0;11/12/2019 09:52;12/12/2019 09:52;I'm not happy;1;Doe;john;john@doe.com;ABC_12;product_test;product_brand;https://url;https://url/img.jpg;;XXXX;;YYYY;product-298948;2;2;13/12/2019 15:31;2;why are not you happy ?;29/12/2019 15:35;3;I don't know what to say.;

Delivrability Reviews Synchro files

type;email;order_ref;firstname;lastname;order_date;event_date
SOFTBOUNCE;john@doe.com;91660837;John;Doe;2019-01-04 21:10:00;2019-01-06 05:11:00
SOFTBOUNCE;john@doe.com;363447729;John;Doe;2019-01-04 22:25:00;2019-01-06 05:09:00
HARDBOUNCE;john@doe.com;468281861;John;Doe;2019-01-04 14:43:00;2019-01-06 05:24:00
HARDBOUNCE;john@doe.com;445317105;John;Doe;2019-01-04 21:00:00;2019-01-06 05:44:00
SPAM;john@doe.com;100652385;John;Doe;2019-01-04 20:20:00;2019-01-06 06:31:00
SPAM;john@doe.com;339490818;John;Doe;2019-01-04 20:29:00;2019-01-06 06:33:00
BLOCKED;john@doe.com;102582106;John;Doe;2019-01-05 17:52:00;2019-01-07 03:45:00
BLOCKED;john@doe.com;111718932;John;Doe;2019-01-05 21:45:00;2019-01-07 03:45:00
CAPPED;john@doe.com;215698965;John;Doe;2019-01-05 19:30:00;2019-01-07 03:44:00
CAPPED;john@doe.com;191384633;John;Doe;2019-01-05 20:28:00;2019-01-07 03:44:00
UNSUBSCRIBED;john@doe.com;577464;John;Doe;2018-12-09 21:23:00;2019-01-07 13:24:00
UNSUBSCRIBED;john@doe.com;566243;John;Doe;2018-10-21 19:19:00;2019-01-07 13:24:00
<?xml version="1.0" encoding="UTF-8"?>
<deliverability>
 <order>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[91660837]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 21:10:47]]></order_date>
  <event_date><![CDATA[2019-01-06 05:11:16]]></event_date>
 </order>
 <order>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[363447729]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 22:25:16]]></order_date>
  <event_date><![CDATA[2019-01-06 05:09:18]]></event_date>
 </order>
 <order>
  <type><![CDATA[HARDBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[468281861]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 14:43:24]]></order_date>
  <event_date><![CDATA[2019-01-06 05:24:34]]></event_date>
 </order>
 <order>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[106431385]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 18:49:16]]></order_date>
  <event_date><![CDATA[2019-01-06 21:10:57]]></event_date>
 </order>
 <order>
  <type><![CDATA[SPAM]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[100652385]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 20:20:12]]></order_date>
  <event_date><![CDATA[2019-01-06 06:31:19]]></event_date>
 </order>
 <order>
  <type><![CDATA[SPAM]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[339490818]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 20:29:11]]></order_date>
  <event_date><![CDATA[2019-01-06 06:33:45]]></event_date>
 </order>
 <order>
  <type><![CDATA[BLOCKED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[173280610]]></order_ref>
  <order_date><![CDATA[2019-01-05 13:38:38]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:07]]></event_date>
 </order>
 <order>
  <type><![CDATA[BLOCKED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[96710054]]></order_ref>
  <order_date><![CDATA[2019-01-05 19:16:05]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:27]]></event_date>
 </order>
 <order>
  <type><![CDATA[CAPPED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[364533677]]></order_ref>
  <order_date><![CDATA[2019-01-05 12:51:34]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:08]]></event_date>
 </order>
 <order>
  <type><![CDATA[CAPPED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[95522898]]></order_ref>
  <order_date><![CDATA[2019-01-05 20:11:04]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:08]]></event_date>
 </order>
 <order>
  <type><![CDATA[UNSUBSCRIBED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[91660994]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-05 20:38:10]]></order_date>
  <event_date><![CDATA[2019-01-07 14:28:22]]></event_date>
 </order>
 <order>
  <type><![CDATA[UNSUBSCRIBED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[535013]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2018-09-20 13:14:16]]></order_date>
  <event_date><![CDATA[2019-01-07 14:28:22]]></event_date>
 </order>
</deliverability>
country;type;email;order_ref;firstname;lastname;order_date;event_date;fgsfsfg;info2;?#BOUNCE_MESSAGE=GS
FR;SOFTBOUNCE;john@doe.com;91660837;John;Doe;2019-01-04 21:10:00;2019-01-06 05:11:00;MARTYRS;Paris;
FR;SOFTBOUNCE;john@doe.com;363447729;John;Doe;2019-01-04 22:25:00;2019-01-06 05:09:00;SECRETAN;Paris;
FR;HARDBOUNCE;john@doe.com;468281861;John;Doe;2019-01-04 14:43:00;2019-01-06 05:24:00;AMIENS;Amiens;
FR;HARDBOUNCE;john@doe.com;445317105;John;Doe;2019-01-04 21:00:00;2019-01-06 05:44:00;NIMES;Nimes;
FR;SPAM;john@doe.com;100652385;John;Doe;2019-01-04 20:20:00;2019-01-06 06:31:00;REIMS;Reims;
FR;SPAM;john@doe.com;339490818;John;Doe;2019-01-04 20:29:00;2019-01-06 06:33:00;LILLE 2;Lille;
FR;BLOCKED;john@doe.com;102582106;John;Doe;2019-01-05 17:52:00;2019-01-07 03:45:00;MONTPELLIER;Montpellier;
FR;BLOCKED;john@doe.com;111718932;John;Doe;2019-01-05 21:45:00;2019-01-07 03:45:00;LILLE CENTRE;Lille;
FR;CAPPED;john@doe.com;215698965;John;Doe;2019-01-05 19:30:00;2019-01-07 03:44:00;ANNECY;Annecy;
FR;CAPPED;john@doe.com;191384633;John;Doe;2019-01-05 20:28:00;2019-01-07 03:44:00;SAINT CLOUD;Saint Cloud;
FR;UNSUBSCRIBED;john@doe.com;577464;John;Doe;2018-12-09 21:23:00;2019-01-07 13:24:00;NANTES;Nantes;
FR;UNSUBSCRIBED;john@doe.com;566243;John;Doe;2018-10-21 19:19:00;2019-01-07 13:24:00;NANTES;Nantes;
<?xml version="1.0" encoding="UTF-8"?>
<deliverability>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[91660837]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 21:10:47]]></order_date>
  <event_date><![CDATA[2019-01-06 05:11:16]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[MARTYRS]]></info1>
  <info2><![CDATA[Paris]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[363447729]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 22:25:16]]></order_date>
  <event_date><![CDATA[2019-01-06 05:09:18]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[SECRETAN]]></info1>
  <info2><![CDATA[Paris]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[HARDBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[468281861]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 14:43:24]]></order_date>
  <event_date><![CDATA[2019-01-06 05:24:34]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[AMIENS]]></info1>
  <info2><![CDATA[Amiens]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[SOFTBOUNCE]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[106431385]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 18:49:16]]></order_date>
  <event_date><![CDATA[2019-01-06 21:10:57]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[MONGE]]></info1>
  <info2><![CDATA[Paris]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[SPAM]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[100652385]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 20:20:12]]></order_date>
  <event_date><![CDATA[2019-01-06 06:31:19]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[REIMS]]></info1>
  <info2><![CDATA[Reims]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[SPAM]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[339490818]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-04 20:29:11]]></order_date>
  <event_date><![CDATA[2019-01-06 06:33:45]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[LILLE 2]]></info1>
  <info2><![CDATA[Lille]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[BLOCKED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[173280610]]></order_ref>
  <order_date><![CDATA[2019-01-05 13:38:38]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:07]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[LE MANS]]></info1>
  <info2><![CDATA[Le Mans]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[BLOCKED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[96710054]]></order_ref>
  <order_date><![CDATA[2019-01-05 19:16:05]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:27]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[NEUILLY2]]></info1>
  <info2><![CDATA[Neuilly sur Seine]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[CAPPED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[364533677]]></order_ref>
  <order_date><![CDATA[2019-01-05 12:51:34]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:08]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[TOULON]]></info1>
  <info2><![CDATA[Toulon]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[CAPPED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_ref><![CDATA[95522898]]></order_ref>
  <order_date><![CDATA[2019-01-05 20:11:04]]></order_date>
  <event_date><![CDATA[2019-01-07 03:44:08]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[VINCENNES]]></info1>
  <info2><![CDATA[Vincennes]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[UNSUBSCRIBED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[91660994]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2019-01-05 20:38:10]]></order_date>
  <event_date><![CDATA[2019-01-07 14:28:22]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[MARTYRS]]></info1>
  <info2><![CDATA[Paris]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
 <order>
  <country><![CDATA[FR]]></country>
  <type><![CDATA[UNSUBSCRIBED]]></type>
  <email><![CDATA[john@doe.com]]></email>
  <order_ref><![CDATA[535013]]></order_ref>
  <firstname><![CDATA[John]]></firstname>
  <lastname><![CDATA[Doe]]></lastname>
  <order_date><![CDATA[2018-09-20 13:14:16]]></order_date>
  <event_date><![CDATA[2019-01-07 14:28:22]]></event_date>
  <info1 label="fgsfsfg"><![CDATA[LEPIC]]></info1>
  <info2><![CDATA[Paris]]></info2>
  <BOUNCE_MESSAGE label="?#BOUNCE_MESSAGE=GS"><![CDATA[]]></BOUNCE_MESSAGE>
 </order>
</deliverability>

Products Reviews Web Ressources - Rate and count by product

<?xml version="1.0"?>
<all_products>
    <product>
        <count><![CDATA[13]]></count>
        <rate><![CDATA[5]]></rate>
    </product>
</all_products>

Products Reviews Web Ressources - list of files with reviews

This file contains a list of reference products and the date of the last review received for all products with review

300019681;2018-01-01
0229918366774;2018-01-01
0309918369303;2018-01-01
168579;2017-04-15
182328;2017-04-15

Products Reviews Web Ressources - Reviews list by product

<?xml version="1.0" encoding="utf-8" ?>
<all_reviews>
    <review>
        <rate><![CDATA[5]]></rate>
        <email><![CDATA[]]></email>
        <info1><![CDATA[]]></info1>
        <info2><![CDATA[3]]></info2>
        <info3><![CDATA[]]></info3>
        <info4><![CDATA[]]></info4>
        <info5><![CDATA[]]></info5>
        <info6><![CDATA[]]></info6>
        <info7><![CDATA[]]></info7>
        <info8><![CDATA[]]></info8>
        <info9><![CDATA[]]></info9>
        <info10><![CDATA[]]></info10>
        <id_review><![CDATA[516751c2-8f97-8184-d906-501d06de4cbf]]></id_review>
        <id_review_product><![CDATA[ed4bda54-af09-0234-5984-e05c218d169b]]></id_review_product>
        <order_ref><![CDATA[REF_test]]></order_ref>
        <id_product><![CDATA[test-developer0]]></id_product>
        <review_date><![CDATA[2016-07-28 11:30:18]]></review_date>
        <review><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit]]></review>
        <lastname><![CDATA[P]]></lastname>
        <firstname><![CDATA[Alexandre]]></firstname>
        <order_date><![CDATA[2016-07-28 11:10:25]]></order_date>
    </review>
    <review>
        <rate><![CDATA[5]]></rate>
        <email><![CDATA[nadjib@avis-verifies.com]]></email>
        <info1><![CDATA[Marseille]]></info1>
        <info2><![CDATA[]></info2>
        <info3><![CDATA[]]></info3>
        <info4><![CDATA[]]></info4>
        <info5><![CDATA[]]></info5>
        <info6><![CDATA[]]></info6>
        <info7><![CDATA[]]></info7>
        <info8><![CDATA[]]></info8>
        <info9><![CDATA[]]></info9>
        <info10><![CDATA[]]></info10>
        <moderation>
            <exchange>
                <date>
                    <![CDATA[ 2019-04-11T15:47:06.0000000 01:00 ]]>
                </date>
                <author>
                    <![CDATA[ 3 ]]>
                </author>
                <comment>
                    <![CDATA[ Because it was bad ]]>
                </comment>
            </exchange>
            <exchange>
                <date>
                    <![CDATA[ 2019-04-11T15:46:37.0000000 01:00 ]]>
                </date>
                <author>
                    <![CDATA[ 2 ]]>
                </author>
                <comment>
                    <![CDATA[Hi, thank you for your review and comments, why are you not happy ?]]>
                </comment>
            </exchange>
        </moderation>
        <id_review><![CDATA[bc31917c-21e4-3a94-d117-b5eac81fb733]]></id_review>
        <id_review_product><![CDATA[d848154c-eded-fa74-dd10-5cc33cf277a9]]></id_review_product>
        <order_ref><![CDATA[300019681]]></order_ref>
        <id_product><![CDATA[6223]]></id_product>
        <review_date><![CDATA[2018-01-02 11:06:52]]></review_date>
        <review><![CDATA[I'm not happy]]></review>
        <lastname><![CDATA[Defrance]]></lastname>
        <firstname><![CDATA[Caroline]]></firstname>
        <order_date><![CDATA[2018-01-01 16:15:12]]></order_date>
    </review>
</all_reviews>
[
    {
        rate: "5",
        email: "caroline.defrance@avis-verifies.com",
        info1: "Marseille",
        info2: "",
        info3: "",
        info4: "",
        info5: "",
        info6: "",
        info7: "",
        info8: "",
        info9: "",
        info10: "",
        id_review: "80eca3ba-1beb-1e14-257f-ab876f6fa301",
        id_review_product: "09c1dd8e-c6a5-2684-f52c-3ba389383cb7",
        order_ref: "300019681",
        id_product: "6223",
        review_date: "2018-01-02 11:06:52",
        review: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut eu egestas metus. Donec nec semper leo. Suspendisse convallis viverra justo nec placerat.",
        lastname: "Defrance",
        firstname: "Caroline",
        order_date: "2018-01-01 16:15:12"
    },
    {
        rate: "5",
        email: "nadjib@avis-verifies.com",
        info1: "Marseille",
        info2: "",
        info3: "",
        info4: "",
        info5: "",
        info6: "",
        info7: "",
        info8: "",
        info9: "",
        info10: "",
        moderation: [
            {
                comment_date: "2019-03-29T12:05:38.0000000 01:00",
                comment_origin: "3",
                comment: "Because it was bad."
            },
            {
                comment_date: "2019-03-29T12:05:15.0000000 01:00",
                comment_origin: "2",
                comment: "why are you not happy ?"
            }
        ],
        id_review: "80eca3ba-1beb-1e14-257f-ab876f6fa301",
        id_review_product: "09c1dd8e-c6a5-2684-f52c-3ba389383cb7",
        order_ref: "300019699",
        id_product: "6221",
        review_date: "2019-01-02 11:06:52",
        review: "I'm not happy.",
        lastname: "chiheb",
        firstname: "nadjib",
        order_date: "2019-01-01 16:15:12"
    }
]
rate;email;info1;info2;info3;info4;info5;info6;info7;info8;info9;info10;id_review;id_review_product;order_ref;id_product;review_date;review;lastname;firstname;order_date;comment_date;comment_origin;comment;comment_date;comment_origin;comment
5;;;3;;;;;;;;;516751c2-8f97-8184-d906-501d06de4cbf;ed4bda54-af09-0234-5984-e05c218d169b;REF_test;test-developer0;2016-07-28 11:30:18;Lorem ipsum dolor sit amet, consectetur adipiscing elit;P;Alexandre;2016-07-28 11:10:25;2019-04-11T17:03:36.0000000 01:00;2;why are you not happy ?;2019-04-11T17:05:55.0000000 01:00;3;Because it was bad
5;caroline.defrance@avis-verifies.com;Marseille;;;;;;;;;;bc31917c-21e4-3a94-d117-b5eac81fb733;d848154c-eded-fa74-dd10-5cc33cf277a9;300019681;6223;2018-01-02 11:06:52;Lorem ipsum dolor sit amet, consectetur adipiscing elit;Defrance;Caroline;2018-01-01 16:15:12

Website Reviews Web Ressources - Reviews list

<?xml version="1.0" encoding="utf-8" ?>
<all_reviews>
    <review>
        <state><![CDATA[5]]></state>
        <rate><![CDATA[5]]></rate>
        <info1><![CDATA[MArseille]]></info1>
        <info2><![CDATA[]]></info2>
        <info3><![CDATA[]]></info3>
        <info4><![CDATA[]]></info4>
        <info5><![CDATA[]]></info5>
        <info6><![CDATA[]]></info6>
        <info7><![CDATA[]]></info7>
        <info8><![CDATA[]]></info8>
        <info9><![CDATA[]]></info9>
        <info10><![CDATA[]]></info10>
        <nps_rate><![CDATA[]]></nps_rate>
        <id_review><![CDATA[41d484eb-3dfc-c1c4-01a1-10cd2487e248]]></id_review>
        <order_ref><![CDATA[0309918369303]]></order_ref>
        <review_date><![CDATA[2018-01-02 22:04:29]]></review_date>
        <review><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit.]]></review>
        <lastname><![CDATA[Perrin]]></lastname>
        <firstname><![CDATA[Alexandre]]></firstname>
        <order_date><![CDATA[2018-01-01 11:37:07]]></order_date>
    </review>
    <review>
        <state><![CDATA[6]]></state>
        <rate><![CDATA[4]]></rate>
        <info1><![CDATA[Toulon]]></info1>
        <info2><![CDATA[]]></info2>
        <info3><![CDATA[]]></info3>
        <info4><![CDATA[]]></info4>
        <info5><![CDATA[]]></info5>
        <info6><![CDATA[]]></info6>
        <info7><![CDATA[]]></info7>
        <info8><![CDATA[]]></info8>
        <info9><![CDATA[]]></info9>
        <info10><![CDATA[]]></info10>
        <nps_rate><![CDATA[9]]></nps_rate>
        <id_review><![CDATA[54b4e668-245c-4764-45a4-37881b169065]]></id_review>
        <order_ref><![CDATA[0229918366774]]></order_ref>
        <review_date><![CDATA[2018-01-02 21:14:11]]></review_date>
        <review><![CDATA[Proin porttitor placerat urna, id elementum tellus pulvinar non.]]></review>
        <lastname><![CDATA[Martin]]></lastname>
        <firstname><![CDATA[Mélanie]]></firstname>
        <order_date><![CDATA[2018-01-01 14:37:07]]></order_date>
    </review>
    <review>
        <state><![CDATA[4]]></state>
        <rate><![CDATA[3]]></rate>
        <info1><![CDATA[Nice]]></info1>
        <info2><![CDATA[]]></info2>
        <info3><![CDATA[]]></info3>
        <info4><![CDATA[]]></info4>
        <info5><![CDATA[]]></info5>
        <info6><![CDATA[]]></info6>
        <info7><![CDATA[]]></info7>
        <info8><![CDATA[]]></info8>
        <info9><![CDATA[]]></info9>
        <info10><![CDATA[]]></info10>
        <moderation>
            <exchange>
                <date>
                    <![CDATA[ 2019-04-11T15:47:06.0000000 01:00 ]]>
                </date>
                <author>
                    <![CDATA[ 3 ]]>
                </author>
                <comment>
                    <![CDATA[ Because it was bad ]]>
                </comment>
            </exchange>
            <exchange>
                <date>
                    <![CDATA[ 2019-04-11T15:46:37.0000000 01:00 ]]>
                </date>
                <author>
                    <![CDATA[ 2 ]]>
                </author>
                <comment>
                    <![CDATA[Hi, thank you for your review and comments, why are you not happy ?]]>
                </comment>
            </exchange>
        </moderation>
        <nps_rate><![CDATA[9]]></nps_rate>
        <id_review><![CDATA[0ac44d3e-6168-58e4-350e-19decbdecfb0]]></id_review>
        <order_ref><![CDATA[0259918369227]]></order_ref>
        <review_date><![CDATA[2018-01-02 20:16:30]]></review_date>
        <review><![CDATA[I'm not happy.]]></review>
        <lastname><![CDATA[Dupont]]></lastname>
        <firstname><![CDATA[Mathilde]]></firstname>
        <order_date><![CDATA[2018-01-01 9:37:07]]></order_date>
    </review>
</all_reviews>
[
    {
        state: "5",
        rate: "5",
        info1: "Marseille",
        info2: "",
        info3: "",
        info4: "",
        info5: "",
        info6: "",
        info7: "",
        info8: "",
        info9: "",
        info10: "",
        id_review: "41d484eb-3dfc-c1c4-01a1-10cd2487e248",
        order_ref: "0309918369303",
        review_date: "2018-01-02 22:04:29",
        review: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
        lastname: "Dubois",
        firstname: "Elodie",
        order_date: "2018-01-01"
    },
    {
        state: "5",
        rate: "4",
        info1: "Toulon",
        info2: "",
        info3: "",
        info4: "",
        info5: "",
        info6: "",
        info7: "",
        info8: "",
        info9: "",
        info10: "",
        id_review: "54b4e668-245c-4764-45a4-37881b169065",
        order_ref: "0229918366774",
        review_date: "2018-01-02 21:14:11",
        review: "Proin porttitor placerat urna, id elementum tellus pulvinar non.",
        lastname: "Martin",
        firstname: "Mélanie",
        order_date: "2018-01-01"
    },
    {
        state: "5",
        rate: "3",
        info1: "Nice",
        info2: "",
        info3: "",
        info4: "",
        info5: "",
        info6: "",
        info7: "",
        info8: "",
        info9: "",
        info10: "",
        moderation: [
            {
                comment_date: "2019-03-29T12:05:38.0000000 01:00",
                comment_origin: "3",
                comment: "Because it was bad."
            },
            {
                comment_date: "2019-03-29T12:05:15.0000000 01:00",
                comment_origin: "2",
                comment: "why are you not happy ?"
            }
        ],
        id_review: "0ac44d3e-6168-58e4-350e-19decbdecfb0",
        order_ref: "0259918369227",
        review_date: "2018-01-02 20:16:30",
        review: "Donec venenatis tortor non urna rutrum, vitae semper lacus aliquet.",
        lastname: "Dupont",
        firstname: "Mathilde",
        order_date: "2018-01-01"
    }
]
state;rate;info1;info2;info3;info4;info5;info6;info7;info8;info9;info10;id_review;order_ref;review_date;review;lastname;firstname;order_date
5;5;Marseille;;;;;;;;;;41d484eb-3dfc-c1c4-01a1-10cd2487e248;0309918369303;2018-01-02 22:04:29;Lorem ipsum dolor sit amet, consectetur adipiscing elit.;Periin;Alexandre;2018-01-01 11:37:07
4;5;Toulon;;;;;;;;;;54b4e668-245c-4764-45a4-37881b169065;0229918366774;2018-01-02 21:14:11;Proin porttitor placerat urna, id elementum tellus pulvinar non.;Martin;Mélanie;2018-01-01 11:37:07
3;5;Nice;;;;;;;;;;0ac44d3e-6168-58e4-350e-19decbdecfb0;0229918366774;2018-01-02 20:16:30;Donec venenatis tortor non urna rutrum, vitae semper lacus aliquet.;Dupont;Mathilde;2018-01-01 11:37:07

Use the proper URL related to your account
https://www.avis-verifies.com/
https://www.verified-reviews.com/index.php
https://www.recensioni-verificate.com/index.php
https://www.opinioes-verificadas.com/index.php
https://www.recensioni-verificate.com/index.php
https://www.echte-bewertungen.com/index.php
https://www.opiniones-verificadas.com/index.php

exemple of id_review: "41d484eb-3dfc-c1c4-01a1-10cd2487e248"

exemple of login : "test.must-interactive.com"

<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>Website reviews feed</title>
<link>https://www.avis-verifies.com/</link>
<description>Retrieve your last website reviews</description>
    <item>
        <guid isPermaLink='false'>id_review</guid>
        <title>Alexandre P.</title>
        <category>5</category>
        <description>description</description>
        <pubDate>Tue, 13 Feb 2018 11:38:26 EST</pubDate>
        <link>https://www.avis-verifies.com/avis-clients/yourlogin#id_review</link>
    </item>
</channel>
</rss>

FTP Keys cryptage

PGP public Keys Download the file
RSA public Keys Download the file


User Object
(
    [admin_role:User:private] => 
    [admin_info:User:private] => 
    [account_state:User:private] => 
    [account_user_role:User:private] => 
    [account_user:User:private] => 
    [permissions:User:private] => Array
        (
        )

    [page:User:private] => Array
        (
            [label] => mod_page_ressources
            [id] => 
            [restricted] => 
        )

    [main_platform] => FR
)

Votre session a changé


Votre session a été modifiée dans un autre onglet.
Cliquez ci-dessous pour retourner à l'accueil, ou bien reconnectez vous.

Retourner à l'accueil