getGiftCardPage
Returns the Gift card.
Method
GET
/api/api.php/getGiftCardPage/
Parameters
page_id
Required
Type: int
Response
Returns the value of the id field of the page.
Returns the gift cards information.
Returns an array with the expressions for a page.
Retorna um array de objectos do tipo values.
Response objects
Example
<script>
$.get( "https://accelerator56.redicom.work/api/api.php/getGiftCardPage",
$( ".container-form :input" ).serialize() )
.done(function(msg) {
var resp = jQuery.parseJSON(msg);
if( resp.response==1 ){
console.log("Sucesso");
}
if( resp.response==0 ){
console.log("Erro");
}
});
</script>