getStoreLocator
Serve para mostrar as lojas.
Method
GET
/api/api.php/getStoreLocator/{country_id}/{city}/{sku_group}
Parameters
country_id
Required
Type: int
city
Required
Type: string
Response objects
Example
<script>
var country_id = "1";
var city = "Santo Tirso";
var sku_group= "2";
var url = "https://accelerator56.redicom.work/api/api.php/getStoreLocator";
$.get( url+"/"+country_id +"/"+city+"/"+sku_group)
.done(function(data) {
var resp = jQuery.parseJSON(data);
});
</script>