Create Refunds
In Zuora, you can refund fully or partially unapplied payments to your end subscribers by refunding from payment.
When you issue a refund, the amount
field is required, which represents the total amount of the refund.
The total amount of the refund cannot exceed the unapplied amount of the associated payment. If you want to refund the applied amount of the associated payment, you must first unapply the applied amount from the billing documents, and then refund the unapplied amount to your end subscribers.
The external
filed indicates whether this refund is an external refund or an electronic refund. External refunds are performed outside of Zuora and electronic refunds are issued by using supported payment gateways.
If the refund type is electronic, you cannot specify the refund date because the electronic refund will automatically refund money to the end subscriber’s credit card.
The following example uses the Create a refund operation to refund part of the unapplied amount ($10) from the payment:
curl -X POST "https://rest.apisandbox.zuora.com/v2/refunds"
-H "Authorization: Bearer 6d151216ef504f65b8ff6e9e9e8356d3"
-H "Content-Type: application/json"
-d '{
"account_id": "8ad09b7d8292b85d0182a4d6f875225a",
"payment_id": "8ad0887e82d94f5d0182d967a49c1a63",
"amount": 10,
"external": false
}'
String accountId = "8ad09b7d8292b85d0182a4d6f875225a";
String paymentId = newPayment.getId();
RefundCreateRequest refundRequest = new RefundCreateRequest()
.amount(new BigDecimal(10))
.accountId(accountId)
.paymentId(paymentId)
.external(false);
Refund refund = zuoraClient.refunds().createRefund(refundRequest);
const refundRequest = {
amount: 10,
account_id: '8ad09b7d8292b85d0182a4d6f875225a',
payment_id: '8ad0887e82d94f5d0182d967a49c1a63',
external: false
};
const refund = await zuoraClient.refunds.createRefund(refundRequest);