jQuery(document).ready(function($){
    if(localStorage.getItem("visit") === null) {
        
        var settings = {
            "url": "https://x12.com.br/wp-json/consulta/v1/visitou",
            "method": "POST","timeout": 0,"headers": {"Content-Type": "application/json"},
            "data": JSON.stringify({"cliente": "x12","landpage": "x12" }),
          };
        $.ajax(settings).done(function (response) {
            console.log(response);
            localStorage.setItem("visit", response.id);
          });
    } else {
        var settings = {
            "url": "https://x12.com.br/wp-json/consulta/v1/views",
            "method": "POST", "timeout": 0,"headers": {"Content-Type": "application/json"},
            "data": JSON.stringify({"cliente": "x12","landpage": "x12","id": localStorage.getItem("visit")}),
          };
          $.ajax(settings).done(function (response) {
            console.log(response);
          });

    }
});