i want to return response data in json to the IPN notification send from the gateway . something like
// Send a response to mark this transaction as notified
$response = array("status" => "OK", "message" => "Status recorded");
header("Content-type: application/json");
echo json_encode($response);
is this not possible with the actual code ? as i see the only return is the transaction data .
the probleme here, if i don't return a notice to the gateway , it will not stop from sending the IPN every X minute .
Question
activa
Hello
i want to return response data in json to the IPN notification send from the gateway . something like
is this not possible with the actual code ? as i see the only return is the transaction data .
the probleme here, if i don't return a notice to the gateway , it will not stop from sending the IPN every X minute .
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.