A payment is the money that customers send to pay for billing documents related to their subscriptions.
The Payment object holds all of the information about an individual payment, including the payment amount, to which billing documents the payment was applied to, and so on.
PaymentAPI
Creates a new payment.
Payment payment = zuoraClient.payments().create(params);
Parameter | Type | Tags | Description |
---|---|---|---|
params |
PaymentCreateRequest |
Required | Payment create request. |
PaymentCreateRequest params = PaymentCreateRequest.builder()
.amount(10.0d)
.account("account_id8")
.authorisationCode("7368")
.currency("USD")
.external(true)
.build();
Payment payment = zuoraClient.payments().create(params);
Retrieves a payment by ID.
Payment payment = zuoraClient.payments().get(id);
Parameter | Type | Tags | Description |
---|---|---|---|
id |
String |
Required | The unique identifier of a payment. |
Payment payment = zuoraClient.payments().get(id);
Payment payment = payment.update();
String Payment_ID = "payment_id8";
Payment payment = zuoraClient.payments().get(PAYMENT_ID);
payment.setName("New Name");
payment.update();