Skip to main content

Transactions

Creating Transactions

The GraphQL API currently supports two primary ways of creating transactions:

  1. The chargePaymentMethod mutation creates a transaction and captures funds immediately, beginning the process of actually transferring money from the customer to your bank account.
  2. authorizePaymentMethod

Which you choose depends on your requirements. In most cases, you’ll want to submit a transaction for settlement at the same time that you authorize the payment by using chargePaymentMethod.

However, there are some cases where you would want to create a transaction but not yet capture funds—for example, if you ship physical goods. In this case, you could use authorizePaymentMethod at the time of the sale, which puts the money on hold against your customer's payment method, and then use captureTransaction once the item has shipped.

For PayPal transactions, if you send physical goods to customers in multiple shipments, you can use authorizePaymentMethod at the time of sale to create a parent authorization for the entire amount. As each shipment ships, you can capture that partial amount in a child transaction using partialCaptureTransaction against the original authorization.

Charging a Payment Method

In order to charge a payment method with chargePaymentMethod, you'll need a payment method's ID, and information about the transaction you'd like to create using it.

If you charge a single-use payment method, this will consume it and you will no longer be able to look up, charge, or vault that payment method.

mutation

mutation ExampleCharge($input: ChargePaymentMethodInput!) {
chargePaymentMethod(input: $input) {
transaction {
id
status
}
}
}

variables

{
"input": {
"paymentMethodId": "id_of_payment_method",
"transaction": {
"amount": "11.23"
}
}
}

To plug this mutation into a curl request, compose the query and variables into a JSON-valid string and send it in the request body. For example:

curl

curl -H 'Content-Type: application/json' -H 'Authorization: Basic BASE64_ENCODED(PUBLIC_KEY:PRIVATE_KEY)' -H 'Braintree-Version: 2019-01-01' -X POST https://payments.sandbox.braintree-api.com/graphql -d '{
"query": "mutation ExampleCharge($input: ChargePaymentMethodInput!) {
chargePaymentMethod(input: $input) {
transaction {
id
status
}
}
}",
"variables": {
"input": {
"paymentMethodId": "id_of_payment_method",
"transaction": {
"amount": "11.23"
}
}
}
}'

There are many more possible fields you can use in the input or request in the output; see the API Explorer for more.

A successful charge results in a transaction with the SUBMITTED_FOR_SETTLEMENT status:

response

{
"data": {
"transaction": {
"id": "id_of_transaction",
"status": "SUBMITTED_FOR_SETTLEMENT"
}
}
}

Using Separate Authorization and Capture

If you require a separate authorization step before charging the payment method to actually capture funds, the GraphQL API provides the authorizePaymentMethod and captureTransaction mutations.

mutation

mutation ExampleAuth($input: AuthorizePaymentMethodInput!) {
authorizePaymentMethod(input: $input) {
transaction {
id
status
}
}
}

variables

{
"input": {
"paymentMethodId": "id_of_payment_method",
"transaction": {
"amount": "11.23"
}
}
}

A successful authorization results in a transaction with the AUTHORIZED status:

response

{
"data": {
"transaction": {
"id": "id_of_authorized_transaction",
"status": "AUTHORIZED"
}
}
}

Once you have authorized your payment method and are ready to capture funds, you should use the captureTransaction mutation. This mutation only requires the ID of the transaction that you'd like to capture.

You have a limited number of days to capture a transaction once it has been authorized.

mutation

mutation ExampleCapture($input: CaptureTransactionInput!) {
captureTransaction(input: $input) {
transaction {
id
status
}
}
}

variables

{
"input": {
"transactionId": "id_of_authorized_transaction"
}
}

A successful charge results in a transaction with the SUBMITTED_FOR_SETTLEMENT status:

response

{
"data": {
"transaction": {
"id": "id_of_authorized_transaction",
"status": "SUBMITTED_FOR_SETTLEMENT"
}
}
}

Using Multiple Partial Capture

This mutation is available for PayPal transactions.

To capture a transaction in multiple parts:

  1. Authorize the entire order amount with either of the authorizePaymentMethod or authorizePayPalAccount mutations.
  2. Make a separate call to the partialCaptureTransaction mutation for each amount you want to capture separately. In each call, specify the ID of the parent authorized transaction and the amount you wish to capture.

Once you have authorized the payment method as outlined in Using Separate Authorization and Capture, you can partially capture funds with the partialCaptureTransaction mutation. This mutation requires the amount you want to collect as well as the ID of the authorized transaction.

mutation

mutation ExamplePartialCapture($input: PartialCaptureTransactionInput!) {
partialCaptureTransaction(input: $input) {
capture {
id
status
}
}
}

variables

{
"input": {
"transactionId": "id_of_authorized_transaction",
"transaction": {
"amount": "5.45"
}
}
}

The mutation is successful if the resulting partial capture transaction is in the SETTLING, SUBMITTED_FOR_SETTLEMENT, or SETTLED state. The parent transaction will have a status of SETTLEMENT_PENDING.

response

{
"data": {
"capture": {
"id": "id_of_child_transaction",
"status": "SETTLING"
}
}
}

For more information about the lifecycle of partial capture transactions, see our full guide on multiple partial capture.

After charging a payment method, you may want to store the ID of the resulting transaction in your database for future reference, either for presenting back in the UI at a later time, or for your own internal book-keeping, analysis, or reporting requirements. You can retrieve this transaction by its ID using the node query.

Transaction Statuses

Even if the chargePaymentMethod or authorizePaymentMethod mutation doesn't return any errors, the transaction may not have been created successfully. For instance, the customer's card-issuing bank may have declined the authorization, or your fraud protection settings may have blocked it. In this case, the Transaction will have a failure status, such as Processor Declined or Gateway Rejected, and further information on what caused the failure. You can then use this to decide how to handle the failure and how to report it back to your customer.

A successful transaction will be updated over time as funds are debited from the customer and sent to you. As money moves, the transaction passes through multiple states in the payment lifecycle, most typically from Authorized to Submitted for Settlement, to Settling, to Settled. For detailed information on what these statuses mean, see the Transaction Lifecycle.

Using the complete list of transaction statuses and their meanings, you can check the status of a transaction to determine if it was successful or unsuccessful and why, and if successful, what will happen to the transaction next. This simplified status diagram shows what happens to a transaction if it succeeds or fails various validations.

Error Handling

Unsuccessful transactions are a normal part of transaction processing and should not be considered exceptional. If an error occurs, you will either not receive a transaction object on the payload, or you will receive only a partial object.

Here's an example of an error on a transaction.

errors

{
"data": {
"chargePaymentMethod": null
},
"errors": [
{
"message": "Amount must be greater than zero.",
"path": ["chargePaymentMethod"],
"extensions": {
"errorType": "user_error",
"errorClass": "VALIDATION",
"legacyCode": "81531",
"inputPath": ["input", "transaction", "amount"]
}
}
],
"extensions": {
"requestId": "a-uuid-for-the-request"
}
}

See more details on handling errors in Making API Calls.

Reversing or Refunding a Transaction

Once you've charged a payment method, you might want to cancel the transaction or refund the customer their money later. We will provide instructions here for the various ways you can "undo" a charge.

To attempt to completely reverse a transaction, regardless of its present settlement status, you may use the reverseTransaction mutation. When using this mutation, we will either void the transaction or issue a refund for the full amount of the transaction.

Voiding the transaction cancels it, preventing funds from being debited from the customer's account. A refund occurs when you have received or are in the process of receiving funds from a transaction already, and you would like to debit the full or partial amount of money from your own account to send back to the customer.

Reversing a Transaction

To reverse a transaction, you only need the ID of the Transaction. Depending on the settlement status at the time of the attempted reversal, the result of the reverseTransaction mutation will either be a Transaction updated to the VOIDED status, or a new Refund linked to the original transaction. If you are interested in only partially refunding a transaction or wish to provide an orderId, use the refundTransaction mutation directly instead.

mutation

mutation ExampleReverse($input: ReverseTransactionInput!) {
reverseTransaction(input: $input) {
reversal {
... on Transaction {
id
status
statusHistory {
status
terminal
}
}
... on Refund {
id
amount {
value
}
orderId
status
refundedTransaction {
id
amount {
value
}
orderId
status
}
}
}
}
}

variables

{
"input": {
"transactionId": "TRANSACTION_ID"
}
}

response

"data": {
"reverseTransaction": {
"reversal": {
"id": "TRANSACTION_ID",
"status": "VOIDED",
"statusHistory": [
{
"status": "VOIDED",
"terminal": true,
},
{
"status": "SUBMITTED_FOR_SETTLEMENT",
"terminal": false,
},
{
"status": "AUTHORIZED",
"terminal": false,
}
]
}
}
}

or

response

"data": {
"reverseTransaction": {
"reversal": {
"id": "REFUND_ID",
"amount": {
"value": "10.00"
},
"orderId": "original-charge-order-id-123",
"status": "SUBMITTED_FOR_SETTLEMENT",
"refundedTransaction": {
"id": "TRANSACTION_ID",
"amount": {
"value": "10.00"
},
"orderId": "original-charge-order-id-123",
"status": "SETTLED"
}
}
}
}

Refunding a Transaction

If you already know the transaction has been SETTLED, or you want to partially refund it, or you need to provide a refund order ID, you can use the refundTransaction mutation.

You'll need the ID for the Transaction that needs to be refunded. It must meet the following criteria to be refundable:

  • in either the SETTLING or SETTLED status
  • has not already been fully refunded

By default, refundTransaction will fully refund a transaction. You can pass in an amount less than the original amount in order to partially refund it. You can also optionally specify an orderId to give the refund its own unique order ID, instead of the default behavior, which is inheriting the order ID from the original transaction.

mutation

mutation ExampleRefund($input: RefundTransactionInput!) {
refundTransaction(input: $input) {
refund {
id
amount {
value
}
orderId
status
refundedTransaction {
id
amount {
value
}
orderId
status
}
}
}
}

variables

{
"input": {
"transactionId": "SETTLED_TRANSACTION_ID",
"refund": {
"amount": "7.00",
"orderId": "refund-order-id-456"
}
}
}

A successful refund results in a new Refund object:

response

{
"data": {
"refundTransction": {
"refund": {
"id": "REFUND_ID",
"amount": {
"value": "7.00"
},
"orderId": "refund-order-id-456",
"status": "SUBMITTED_FOR_SETTLEMENT",
"refundedTransaction": {
"id": "TRANSACTION_ID",
"amount": {
"value": "10.00"
},
"orderId": "original-charge-order-id-123",
"status": "SETTLED"
}
}
}
}
}

Or, a refund can fail because the original transaction wasn't ready to refund or had already been refunded. For example:

errors

{
"data": null,
"errors": [
{
"message": "Transaction has already been completely refunded.",
"locations": [{"line": 2, "column": 3}],
"path": ["refundTransaction"],
"extensions": {
"errorType": "user_error",
"errorClass": "VALIDATION",
"legacyCode": "91512",
"inputPath": ["input", "transactionId"]
}
}
]
}

Detached Refunds

If you need to create a detached refund (unassociated with any previous Braintree payment), you can do so using the refundCreditCard and refundUsBankAccount mutations:

mutation

mutation($input: RefundCreditCardInput!) {
refundCreditCard(input: $input) {
clientMutationId
refund {
id
status
amount {
value
}
orderId
merchantAccountId
source
refundedTransaction {
id
}
paymentMethod {
id
}
}
}
}

variables

{
"input": {
"paymentMethodId": "id_of_payment_method",
"refund": {
"amount": "10.00"
}
}
}

response

{
"data": {
"refundCreditCardInput": {
"clientMutationId": "id_of_client_mutation",
"refund": {
"id": "id_of_refund",
"status": "SUBMITTED_FOR_SETTLEMENT",
"amount": {
"value": "10.00"
},
"orderId": "id_of_order",
"merchantAccountId": "id_of_merchant_account",
"source": "API",
"refundedTransaction": {
"id": "id_of_refunded_transaction"
},
"paymentMethod": {
"id": "id_of_payment_method"
}
}
}
},
"extensions": {
"requestId": "a-uuid-for-the-request"
}
}

Reversing Refunds

If you want to reverse a previously issued refund, you can use the reverseRefund mutation:

mutation

mutation ReverseRefund($input: ReverseRefundInput!) {
reverseRefund(input: $input) {
refund {
id
createdAt
amount {
value
currencyCode
}
status
source
refundedTransaction {
id
}
}
}
}

variables

{
"input": {
"refundId": "id_of_refund"
}
}

response

{
"data": {
"reverseRefund": {
"refund": {
"id": "id_of_refund",
"createdAt": "created_at_date",
"amount": {
"value": "10.00",
"currencyCode": "USD"
},
"status": "VOIDED",
"source": "API",
"refundedTransaction": {
"id": "id_of_refunded_transaction"
}
}
}
},
"extensions": {
"requestId": "a-uuid-for-the-request"
}
}

Searching For Transactions

There are two ways to query for specific information on transactions:

Search Query

The following is an example of using the search query to find transactions that fit certain criteria:

query

query($input: TransactionSearchInput!) {
search {
transactions(input: $input) {
edges {
node {
id
status
amount {
value
currencyCode
}
merchantId
}
}
}
}
}

variables

{
"input": {
"id": {
"is": "id_of_transaction"
},
"status": {
"is": "status_of_transaction"
},
"amount": {
"value": {
"is": "value_of_transaction"
}
}
}
}

response

{
"data": {
"search": {
"transactions": {
"edges": [
{
"node": {
"id": "id_of_transaction",
"status": "status_of_transaction",
"amount": {
"value": "value_of_transaction",
"currencyCode": "currency_code_of_transaction"
},
"merchantId": "id_of_merchant"
}
}
]
}
}
},
"extensions": {
"requestId": "a-uuid-for-the-request"
}
}

Node Query

You can also use a node query to perform a GET request to retrieve a transaction by its ID:

query

{
node(id: "id_of_transaction") {
... on Transaction {
status
paymentMethod {
id
details {
__typename
}
}
}
}
}

response

{
"data": {
"node": {
"status": "status_of_transaction",
"paymentMethod": {
"id": "id_of_transaction",
"details": {
"__typename": "type_name_of_transaction"
}
}
}
},
"extensions": {
"requestId": "a-uuid-for-the-request"
}
}