Transactions
- Get authorization to collect money from a customer by creating a sale.
- Collect the money from an authorized sale by submitting the transaction for settlement.
- Undo a transaction before it settles by creating a void.
- Return previously collected money to a customer by creating a refund.
- Search for or find transactions you've created.
- Take more advanced actions depending on your setup.
Status
The transaction
status
indicates the current stage in the transaction lifecycle. Refer to the following diagram, or
see all possible statuses with their explanations
in the reference.

Settlement
To collect money, you'll need to submit the sale transaction for settlement. You can do this in two
ways:- When creating a transaction, use the options.submitForSettlement option:
- Java
TransactionRequest request = new TransactionRequest()
.amount(new BigDecimal("10.00"))
.paymentMethodNonce(nonceFromTheClient)
.deviceData(deviceDataFromTheClient)
.options()
.submitForSettlement(true)
.done();
Result<transaction> result = gateway.transaction().sale(request);
if (result.isSuccess()) {
// See result.getTarget() for details
} else {
// Handle errors
}
- Java
Result<transaction> result = gateway.transaction().submitForSettlement("the_transaction_id");
if (result.isSuccess()) {
Transaction settledTransaction = result.getTarget();
} else {
System.out.println(result.getErrors());
}
If the transaction can't be found, you'll receive a
NotFoundException
.
The transaction must be authorized to submit for settlement. Learn more about submitting authorized transactions for settlement in our Managing Authorizations support article.
Validations
If you provide invalid or malformed transaction details, the gateway returns
validation errors on the transaction. You may also receive other types of validation errors on any additional information associated
with the transaction, including the payment method, customer, and address.
Disputes
Depending on your account setup, when a customer files a chargeback or other dispute with their bank or card network, you can retrieve those details from the transaction response object. Each transaction response object has a disputes property that is an array of zero or more disputes.
You can also search for disputed transactions by the dispute date.
After you've located a disputed transaction, how you handle it depends on your banking partner. Learn more about chargebacks and retrievals in our support articles.
Learn more
See more documentation on transactions:- Set up a basic PayPal Braintree integration to create a sale transaction using our Get Started guide.
- Processor responses on authorization and settlement requests.
- Gateway rejections and how to check the reason for a rejection.
- Supporting sales in multiple currencies by specifying a merchant account ID.
- Differences between refund, void, and detached credit transactions.
- Transactions with 3D Secure.
- Sandbox testing details including test values for creating sandbox transactions.