Created
July 19, 2012 10:50
-
-
Save mapkyca/3142991 to your computer and use it in GitHub Desktop.
Paypal IPN Example Response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Some example paypal response for reference: | |
| array ( | |
| 'test_ipn' => '1', | |
| 'payment_type' => 'instant', | |
| 'payment_date' => '03:46:59 Jul 19, 2012 PDT', | |
| 'payment_status' => 'Completed', | |
| 'address_status' => 'confirmed', | |
| 'payer_status' => 'unverified', | |
| 'first_name' => 'John', | |
| 'last_name' => 'Smith', | |
| 'payer_email' => 'buyer@paypalsandbox.com', | |
| 'payer_id' => 'TESTBUYERID01', | |
| 'address_name' => 'John Smith', | |
| 'address_country' => 'United States', | |
| 'address_country_code' => 'US', | |
| 'address_zip' => '95131', | |
| 'address_state' => 'CA', | |
| 'address_city' => 'San Jose', | |
| 'address_street' => '123, any street', | |
| 'receiver_email' => 'seller@paypalsandbox.com', | |
| 'receiver_id' => 'TESTSELLERID1', | |
| 'residence_country' => 'US', | |
| 'item_name1' => 'something', | |
| 'item_number1' => 'AK-1234', | |
| 'quantity1' => '1', | |
| 'tax' => '2.02', | |
| 'mc_currency' => 'USD', | |
| 'mc_fee' => '0.44', | |
| 'mc_gross_1' => '9.34', | |
| 'mc_handling' => '2.06', | |
| 'mc_handling1' => '1.67', | |
| 'mc_shipping' => '3.02', | |
| 'mc_shipping1' => '1.02', | |
| 'txn_type' => 'cart', | |
| 'txn_id' => '597191046', | |
| 'notify_version' => '2.4', | |
| 'custom' => 'xyz123', | |
| 'invoice' => 'abc1234', | |
| 'charset' => 'windows-1252', | |
| 'verify_sign' => 'AN4JjNlgS495Dm.RXUNZztJi74mvA55LC.oL.P70IVmkwXeChrHMjbDg', | |
| ) | |
| array ( | |
| 'test_ipn' => '1', | |
| 'payment_type' => 'echeck', | |
| 'payment_date' => '03:48:22 Jul 19, 2012 PDT', | |
| 'payment_status' => 'Completed', | |
| 'address_status' => 'confirmed', | |
| 'payer_status' => 'verified', | |
| 'first_name' => 'John', | |
| 'last_name' => 'Smith', | |
| 'payer_email' => 'buyer@paypalsandbox.com', | |
| 'payer_id' => 'TESTBUYERID01', | |
| 'address_name' => 'John Smith', | |
| 'address_country' => 'United States', | |
| 'address_country_code' => 'US', | |
| 'address_zip' => '95131', | |
| 'address_state' => 'CA', | |
| 'address_city' => 'San Jose', | |
| 'address_street' => '123, any street', | |
| 'business' => 'seller@paypalsandbox.com', | |
| 'receiver_email' => 'seller@paypalsandbox.com', | |
| 'receiver_id' => 'TESTSELLERID1', | |
| 'residence_country' => 'US', | |
| 'item_name' => 'something', | |
| 'item_number' => 'AK-1234', | |
| 'quantity' => '1', | |
| 'shipping' => '3.04', | |
| 'tax' => '2.02', | |
| 'mc_currency' => 'USD', | |
| 'mc_fee' => '0.44', | |
| 'mc_gross' => '12.34', | |
| 'txn_type' => 'web_accept', | |
| 'txn_id' => '227191048', | |
| 'notify_version' => '2.1', | |
| 'custom' => 'xyz123', | |
| 'invoice' => 'abc1234', | |
| 'charset' => 'windows-1252', | |
| 'verify_sign' => 'AEkVUSvEoOeACytMppCbeoFnRy1PA6lRiaqyY1CGg8JMRyk7uiwNoDCA', | |
| ) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment