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