Interface CompleteClientInterface
- All Known Implementing Classes:
CompleteClient
public interface CompleteClientInterface
Complete client. Thread-safe.
-
Method Summary
Modifier and TypeMethodDescriptioncompletePayment(String paymentId, CompletePaymentRequest body) Resource /v2/{merchantId}/payments/{paymentId}/complete - Complete paymentcompletePayment(String paymentId, CompletePaymentRequest body, CallContext context) Resource /v2/{merchantId}/payments/{paymentId}/complete - Complete payment
-
Method Details
-
completePayment
Resource /v2/{merchantId}/payments/{paymentId}/complete - Complete payment- Parameters:
paymentId- Stringbody- CompletePaymentRequest- Returns:
- CompletePaymentResponse
- Throws:
DeclinedPaymentException- if the payment platform declined / rejected the payment. The payment result will be available from the exception.ValidationException- if the request was not correct and couldn't be processed (HTTP status code 400)AuthorizationException- if the request was not allowed (HTTP status code 403)ReferenceException- if an object was attempted to be referenced that doesn't exist or has been removed, or there was a conflict (HTTP status code 404, 409 or 410)PlatformException- if something went wrong at the payment platform, the payment platform was unable to process a message from a downstream partner/acquirer, or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)ApiException- if the payment platform returned any other error
-
completePayment
CompletePaymentResponse completePayment(String paymentId, CompletePaymentRequest body, CallContext context) Resource /v2/{merchantId}/payments/{paymentId}/complete - Complete payment- Parameters:
paymentId- Stringbody- CompletePaymentRequestcontext- CallContext- Returns:
- CompletePaymentResponse
- Throws:
DeclinedPaymentException- if the payment platform declined / rejected the payment. The payment result will be available from the exception.IdempotenceException- if an idempotent request caused a conflict (HTTP status code 409)ValidationException- if the request was not correct and couldn't be processed (HTTP status code 400)AuthorizationException- if the request was not allowed (HTTP status code 403)ReferenceException- if an object was attempted to be referenced that doesn't exist or has been removed, or there was a conflict (HTTP status code 404, 409 or 410)PlatformException- if something went wrong at the payment platform, the payment platform was unable to process a message from a downstream partner/acquirer, or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)ApiException- if the payment platform returned any other error
-