Spencer D
Spencer D

Reputation: 3486

Custom Payment IPN notify_url

On my website I'm using a custom PayPal checkout form and one of the elements in the form is:

input name="notify_url" type="hidden" value="http://www.example.com/ipn.php"

On actual PayPal I have my real ipn link, but could I route this to another ipn?

For example, let's say under my PayPal settings my ipn is: http://www.example.com/ipn_1.php Can I set this link to say: http://www.example.com/ipn_2.php and then receive payment notifications at ipn_2.php instead of ipn_1.php like it says in my merchant settings?

Upvotes: 0

Views: 704

Answers (1)

Drew Angell
Drew Angell

Reputation: 26056

Yes, when you use notify_url that will override what you have in your PayPal profile so it would hit that IPN URL instead.

Upvotes: 2

Related Questions