welcomeGift
Serve para registar a acção do welcome gift
Method
POST
/api/api.php/welcomeGift
Response objects
Example
<script>
$.post( "https://accelerator56.redicom.work/api/api.php/welcomeGift",
$( "#welcome-gift form" ).serialize() )
.done(function(msg) {
var resp = jQuery.parseJSON(msg);
if( resp.response==1 ){
console.log("Guardado com sucesso");
}
if( resp.response==0 ){
console.log("Erro");
}
});
</script>