UUID |
PaymentApi.addPaymentMethodWithPaymentControl(Account account,
String paymentMethodExternalKey,
String pluginName,
boolean setDefault,
PaymentMethodPlugin paymentMethodInfo,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
|
HostedPaymentPageFormDescriptor |
PaymentGatewayApi.buildFormDescriptorWithPaymentControl(Account account,
UUID paymentMethodId,
Iterable<PluginProperty> customFields,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Build metadata for the client to create a redirect form
|
Payment |
PaymentApi.createAuthorizationWithPaymentControl(Account account,
UUID paymentMethodId,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentExternalKey,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Authorize a payment and allow to go through registered routing plugins
|
Payment |
PaymentApi.createCaptureWithPaymentControl(Account account,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Capture a previously authorized payment and allow to go through registered routing plugins
|
InvoicePayment |
InvoicePaymentApi.createChargebackForInvoicePayment(Account account,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Record a chargeback and allow to go through registered routing plugins
|
InvoicePayment |
InvoicePaymentApi.createChargebackReversalForInvoicePayment(Account account,
UUID paymentId,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Reverse a chargeback and allow to go through registered routing plugins
|
Payment |
PaymentApi.createChargebackReversalWithPaymentControl(Account account,
UUID paymentId,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
PaymentOptions paymentOptions,
CallContext context) |
Reverse a chargeback
|
Payment |
PaymentApi.createChargebackWithPaymentControl(Account account,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
PaymentOptions paymentOptions,
CallContext context) |
Record a chargeback
|
InvoicePayment |
InvoicePaymentApi.createCreditForInvoicePayment(boolean isAdjusted,
Map<UUID,BigDecimal> adjustments,
Account account,
UUID originalPaymentId,
UUID paymentMethodId,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentExternalKey,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Credit a payment method for a given invoice and allow to go through registered routing plugins
|
Payment |
PaymentApi.createCreditWithPaymentControl(Account account,
UUID paymentMethodId,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentExternalKey,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Credit a payment method and allow to go through registered routing plugins
|
InvoicePayment |
InvoicePaymentApi.createPurchaseForInvoicePayment(Account account,
UUID invoiceId,
UUID paymentMethodId,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentExternalKey,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Combine an authorize and capture payment for a given invoice and allow to go through registered routing plugins
|
Payment |
PaymentApi.createPurchaseWithPaymentControl(Account account,
UUID paymentMethodId,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentExternalKey,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Combine an authorize and capture payment and allow to go through registered routing plugins
|
InvoicePayment |
InvoicePaymentApi.createRefundForInvoicePayment(boolean isAdjusted,
Map<UUID,BigDecimal> adjustments,
Account account,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Refund a previously captured payment and allow to go through registered routing plugins
|
Payment |
PaymentApi.createRefundWithPaymentControl(Account account,
UUID paymentId,
BigDecimal amount,
Currency currency,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Refund a previously captured payment and allow to go through registered routing plugins
|
Payment |
PaymentApi.createVoidWithPaymentControl(Account account,
UUID paymentId,
org.joda.time.DateTime effectiveDate,
String paymentTransactionExternalKey,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Void a previously authorized payment and allow to go through registered routing plugins
|
Payment |
PaymentApi.notifyPendingTransactionOfStateChangedWithPaymentControl(Account account,
UUID paymentTransactionId,
boolean isSuccess,
PaymentOptions paymentOptions,
CallContext context) |
Transition a currently PENDING transaction into either a SUCCESS or a FAILURE
|
GatewayNotification |
PaymentGatewayApi.processNotificationWithPaymentControl(String notification,
String pluginName,
Iterable<PluginProperty> properties,
PaymentOptions paymentOptions,
CallContext context) |
Process a notification from the gateway
|