Create Credit note, PayPal do not refund - magento

I created credit note for a order (the paid and invoiced). The credit note is saved. It also should the refund the money in PayPal. But it doesn't. What can go wrong?
Edit1:
Which function is called when refund is called?

Did you capture your payment? What is the invoice status?
It should be ‘Paid’. If it’s paid and captured within paypal you should be able to refund online. It should have a transaction ID with it, then make sure you click refund and not refund offline

In the model of your payment module, there must be a file named PaymentMethod.php having a function refund(Varien_Object $payment, $amount) which is responsible for this.

Related

prestashop in paypal customer send payment error

If I pay by Customer Paypal then error message arrives
We’re sorry. This seller doesn’t accept payments in your currency. Please return to the seller and choose another way to pay. return merchant
any idea how solve this error
Which currency have you activated on your shop? Do you check the currencies with which you want to pay and accept by Paypal?
Regards,

Is there a refund webhook for Braintree?

I didn't find some refund webhook in webhooks list.
Is Disbursment webhook something what can help me in this case https://developers.braintreepayments.com/reference/general/webhooks/disbursement/php ?
[Edit #1]: I've tested it and found that Disbursment webhook won't trigger after refund button is clicked in Braintree sandbox admin.
So I presume there is no webhook for refunds. For now I ended up with scheduled cron task to get refund transactions from the Braintree API:
$collection = Braintree_Transaction::search([
Braintree_TransactionSearch::createdAt()->greaterThanOrEqualTo($hourAgo),
Braintree_TransactionSearch::type()->is(Braintree_Transaction::CREDIT),
Braintree_TransactionSearch::refund()->is(true)
]);
P.S. hey, downvoters, why wouldn't you argument your opinion in comments? At least it could be helpful for someone who will find this thread.
Full disclosure: I work at Braintree. If you have any further questions, feel free to contact support.
Braintree does not have a webhook which fires when a refund is created. Webhooks are used for asynchronous events—in other words, events which are not triggered directly by an API call made by your integration. You get immediate feedback on the success or failure of a refund via the result object from the refund API call. Use that result to trigger whatever action you wanted to take when a refund occurs.
(If what you're actually looking for is to get information when a refund transaction disburses—i.e., when the funds for a refund are moved out of your bank account—then you actually do want a disbursement webhook. Disbursements represent the sum of your incoming and outgoing funds.)

Magento 1.7.0.2 refund doesn't sync with PayPal

I hope you can help me.
I issued a full refund to a customer who paid through paypal.
Magento (v.1.7.0.2) has processed the refund correctly but hasn't synchronized with PayPal i.e. the refund has not been sent to the customer for real.
The PayPal customer service told me to read this: https://developer.paypal.com/webapps/developer/docs/classic/api/merchant/RefundTransaction_API_Operation_NVP/
But...what should I do? I just followed Magento and PayPal instructions in order to establish the connetction between the two (and PayPal confirms it's works).
The problem arose yesterday after I changed the API keys because of a change of PayPal account, it worked perfectly before that change. What can you suggest me to check / modify?
Thanks,
Giovanni
Please confirm if your new account has the privileges of refunding.

Paypal orders not going through to Magento

We have noticed that some customer orders never made it through to magento, but they did go through Paypal. This used to happen when an order would go through a payment review, the payment would be cleared by Paypal after the review was completed, but Magento would never clear it. Is there a reason why some orders are completed on Paypal?s end, but never make it through to Magento?
Sounds like your missing the Callback IPN Url within Paypal itself.
http://www.magentocommerce.com/wiki/3_-_store_setup_and_management/payment/paypal_standard_payments_setup_with_ipn
http://www.magentocommerce.com/knowledge-base/entry/setting-up-paypal-for-your-magento-store

Can Google Checkout support the Parallel Payments like Paypal

I have created a Event website and here registered user can create event and their tickets and when an event is created then other users purchases tickets. when customer pays for the tickets then the payment goes to the two person ie. 1(Ticket Owner),2(Website Owner). there are two payment gateways one is Paypal and second is Google Checkout.
I have implement Paypal Parallel Payments for this and want to know that there are any options in Google Checkout like Paypal for this type payment. please let me know as soon aspossible.
Thanks
As far as I know there is no equivalent to PayPal Parallel Payments in Google Checkout.

Resources