sendWishlistPublic
Method
POST
/api/api.php/sendWishlistPublic
Parameters
name
Required
Type: string
email
Required
Type: string
friend_name
Required
Type: string
friend_email
Required
Type: string
Response objects
Example
<script>
$.post( "https://accelerator56.redicom.work/api/api.php/sendWishlistPublic",
$( ".cms_frm" ).serialize() )
.done(function(msg) {
var resp = jQuery.parseJSON(msg);
if( resp.response==1 ){
console.log("Enviado com sucesso");
}
});
</script>