Transaction

Transaction: Search

Returns a collection of Transaction response objects.

For operators available on search fields, see the search fields page.

  1. C#
var request = new TransactionSearchRequest().
    CustomerId.Is("the_customer_id");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

foreach (Transaction transaction in collection)
{
    Console.WriteLine(transaction.Amount);
}
Parameters
Amountrange
The amount of the transaction. The amount must be formatted like xx or x.xx.
The date/time the transaction's authorization expired.
The date/time the transaction was authorized.
The company name on the billing address used for the transaction.
The country name on the billing address used for the transaction.
The extended address on the billing address used for the transaction.
The first name on the billing address used for the transaction.
The last name on the billing address used for the transaction.
The locality (e.g. city) on the billing address used for the transaction.
The postal code on the billing address used for the transaction.
The region (e.g. state) on the billing address used for the transaction.
The street address on the billing address used for the transaction.
The date/time at which the transaction was created.
CreatedUsingmultiple

The data used to create the transaction. Possible values:

  • TransactionCreatedUsing.TOKEN
  • TransactionCreatedUsing.FULL_INFORMATION

The type of credit card used in the transaction. Possible values:

  • "American Express"
  • "Discover"
  • "Maestro"
  • "JCB"
  • "MasterCard"
  • "UnionPay"
  • "Visa"
The cardholder name in the transaction. This only applies to credit card transactions.

The location of the customer in the transaction. Possible values:

  • international
  • us
The expiration date of the card used in the transaction. This only applies to credit card transactions.

The number of the card used in the transaction.

Card number search is restricted: starts with searches up to the first 6 digits, ends with searches last 4 digits, and contains is not allowed.

The unique identifier of the card number. See the transaction response reference for more details.

The currency of the transaction.
The customer's company associated with the transaction.
The customer's email address associated with the transaction.
The customer's fax number associated with the transaction.
The customer's first name associated with the transaction.
A string value representing an existing customer in your Vault that is associated with the transaction.
The customer's last name associated with the transaction.
The customer's phone number associated with the transaction.
The customer's website associated with the transaction.
DebitNetworkmultiple
The debit network to search for.

Only available for certain account types; contact us for details.

The date the transaction was disbursed to your bank account. This field does not include a time value.

Only available for certain account types; contact us for details.

The date the transaction was disputed. This field does not include a time value.

The date/time the transaction failed.
The date/time the transaction was rejected by the gateway.
Idtext
The ID of the transaction.
Idsmultiple
The list of transaction IDs to search for.

The merchant account IDs associated with transactions.

A fragment of the merchant account ID to search for.

A part of the merchant account ID to search for.
A postfix for the merchant account ID to search for.
Istext
An exact merchant account ID to search for.
IsNottext
A merchant account ID to be excluded from the search.
A prefix for the merchant account ID to search for.
The order ID of the transaction. On PayPal transactions, this field maps to the PayPal invoice number. PayPal invoice numbers are unique in your PayPal business account. Maximum 255 characters or 127 for PayPal transactions.
The payment method token used in the transaction.
The Authorization ID for a PayPal transaction.
The PayPal account holder's email for a PayPal transaction.
The identification value of the payment in PayPal's API for a PayPal transaction.
The authorization code returned by the processor for the transaction.
The date/time the transaction was declined by the processor
Refundmultiple

Whether or not the transaction is a refund. The value may be either true or false. This parameter must be used in conjunction with Type.

The date/time the transaction finished settling.
ID of the batch the transaction was submitted for settlement under.
The company name on the shipping address used for the transaction.
The country name on the shipping address used for the transaction.
The extended address on the shipping address used for the transaction.
The first name on the shipping address used for the transaction.
The last name on the shipping address used for the transaction.
The locality (e.g. city) on the shipping address used for the transaction.
The postal code on the shipping address used for the transaction.
The region (e.g. state) on the shipping address used for the transaction.
The street address on the shipping address used for the transaction.
Sourcemultiple

How a transaction was created. Possible values:

  • API
  • CONTROL_PANEL
  • RECURRING
  • OAuth application client ID of the transaction facilitator
Statusmultiple

The list of statuses to search for. Possible statuses:

  • AUTHORIZING
  • AUTHORIZED
  • AUTHORIZATION_EXPIRED
  • SUBMITTED_FOR_SETTLEMENT
  • SETTLING
  • SETTLEMENT_PENDING
  • SETTLEMENT_DECLINED
  • SETTLED
  • VOIDED
  • PROCESSOR_DECLINED
  • GATEWAY_REJECTED
  • FAILED
The date/time the transaction was submitted for settlement.
Typemultiple

Possible values:

  • SALE
  • CREDIT
Usermultiple
A list of user IDs used to create the transaction. Specifically refers to Control Panel users and/or API users.
The date/time the transaction was voided.

Examplesanchor

Credit cardanchor

  1. C#
var request = new TransactionSearchRequest().
    CreditCardCardholderName.Is("Patrick Smith").
    CreditCardExpirationDate.Is("05/2012").
    CreditCardNumber.EndsWith("1111");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Searching On Customer Detailsanchor

  1. C#
var request = new TransactionSearchRequest().
    CustomerCompany.Is("Braintree").
    CustomerEmail.Is("smith@example.com").
    CustomerFax.Is("5551231234").
    CustomerFirstName.Is("Tom").
    CustomerLastName.Is("Smith").
    CustomerPhone.Is("5551231234").
    CustomerWebsite.Is("http://example.com");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

See search fields for a list of available operators. They allow you to do nice things like this:

  1. C#
var request = new TransactionSearchRequest().
    CustomerEmail.EndsWith("example.com");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Billing addressanchor

  1. C#
var request = new TransactionSearchRequest().
    BillingFirstName.Is("Paul").
    BillingLastName.Is("Smith").
    BillingCompany.Is("Braintree").
    BillingStreetAddress.Is("123 Main St").
    BillingExtendedAddress.Is("Suite 123").
    BillingLocality.Is("Chicago").
    BillingRegion.Is("Illinois").
    BillingPostalCode.Is("12345").
    BillingCountryName.Is("United States of America");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Shipping addressanchor

  1. C#
var request = new TransactionSearchRequest().
    ShippingFirstName.Is("Paul").
    ShippingLastName.Is("Smith").
    ShippingCompany.Is("Braintree").
    ShippingStreetAddress.Is("123 Main St").
    ShippingExtendedAddress.Is("Suite 123").
    ShippingLocality.Is("Chicago").
    ShippingRegion.Is("Illinois").
    ShippingPostalCode.Is("12345").
    ShippingCountryName.Is("United States of America");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Other top-level attributesanchor

  1. C#
var request = new TransactionSearchRequest().
    OrderId.Is("myorder").
    ProcessorAuthorizationCode.Is("123456");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Vault associationsanchor

You can search for transactions associated to a payment method token.

  1. C#
var request = new TransactionSearchRequest().
    PaymentMethodToken.Is("the_token");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

How the transaction was createdanchor

You can search for transactions that were created using a token.

  1. C#
var request = new TransactionSearchRequest().
    CreatedUsing.Is(TransactionCreatedUsing.TOKEN);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Or transactions that were created using full credit card information.

  1. C#
var request = new TransactionSearchRequest().
    CreatedUsing.Is(TransactionCreatedUsing.FULL_INFORMATION);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Those are the only two choices for created_using.

Customer locationanchor

Customers in the US.

  1. C#
var request = new TransactionSearchRequest().
    CreditCardCustomerLocation.Is(CreditCardCustomerLocation.US);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Or international customers.

  1. C#
var request = new TransactionSearchRequest().
    CreditCardCustomerLocation.Is(CreditCardCustomerLocation.INTERNATIONAL);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Merchant accountanchor

A specific one.

  1. C#
var request = new TransactionSearchRequest().
    MerchantAccountId.Is("the_merchant_account_id");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Or any of several.

  1. C#
var request = new TransactionSearchRequest().
    MerchantAccountId.IncludedIn("account_1", "account_2");

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Credit card typeanchor

A specific one.

  1. C#
var request = new TransactionSearchRequest().
    CreditCardCardType.Is(CreditCardCardType.VISA);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Or any of several.

  1. C#
var request = new TransactionSearchRequest().
    CreditCardCardType.IncludedIn(CreditCardCardType.VISA, CreditCardCardType.MASTER_CARD, CreditCardCardType.DISCOVER);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Transaction statusanchor

Another one or many search field.

  1. C#
var request = new TransactionSearchRequest().
    Status.Is(TransactionStatus.AUTHORIZED);
ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

request = new TransactionSearchRequest().
      Status.IncludedIn(TransactionStatus.AUTHORIZED,
                        TransactionStatus.SUBMITTED_FOR_SETTLEMENT);
collection = gateway.Transaction.Search(request);

Transaction sourceanchor

API, Control Panel, or Recurring Billing.

  1. C#
var request = new TransactionSearchRequest().
    Source.Is(TransactionSource.API);
ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

request = new TransactionSearchRequest().
      Source.IncludedIn(
          TransactionSource.API, TransactionSource.CONTROL_PANEL
      );
collection = gateway.Transaction.Search(request);

Transaction typeanchor

The two types of transactions are sale and credit. Refunds are a special kind of credit, so there are some extra options around them.

  1. C#
var request = new TransactionSearchRequest().
    Type.Is(TransactionType.SALE);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

This will return all credits, regardless of whether they're refunds, or standalone credits.

  1. C#
var request = new TransactionSearchRequest().
    Type.Is(TransactionType.CREDIT);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

If you only want the refunds:

  1. C#
var request = new TransactionSearchRequest().
    Type.Is(TransactionType.CREDIT).
    Refund.Is(true);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

And if you only want the credits that aren't refunds:

  1. C#
var request = new TransactionSearchRequest().
    Type.Is(TransactionType.CREDIT).
    Refund.Is(false);

ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

Amountanchor

It's a range field .

  1. C#
var request = new TransactionSearchRequest().
    Amount.Between(100.00M, 200.00M);
ResourceCollection<Transaction> collection = gateway.Transaction.Search(request);

request = new TransactionSearchRequest().
    Amount.GreaterThanOrEqualTo(100.00M);
collection = gateway.Transaction.Search(request);

request = new TransactionSearchRequest().
    Amount.LessThanOrEqualTo(200.00M);
collection = gateway.Transaction.Search(request);

Status changesanchor

You can search for transactions that entered a given status at a certain date and time. For instance, you can find all transactions which were submitted for settlement in the past 3 days.

You can search on these statuses:

  • CreatedAt
  • AuthorizedAt
  • SubmittedForSettlementAt
  • SettledAt
  • VoidedAt
  • ProcessorDeclinedAt
  • GatewayRejectedAt
  • FailedAt
  • AuthorizationExpiredAt

A few examples:

  1. C#
var searchRequest = new TransactionSearchRequest().
    CreatedAt.GreaterThanOrEqualTo(DateTime.Now.AddDays(-1));

ResourceCollection<Transaction> results = gateway.Transaction.Search(searchRequest);
  1. C#
var searchRequest = new TransactionSearchRequest().
    SettledAt.GreaterThanOrEqualTo(DateTime.Now.AddDays(-1));

ResourceCollection<Transaction> results = gateway.Transaction.Search(searchRequest);
  1. C#
var searchRequest = new TransactionSearchRequest().
    ProcessorDeclinedAt.GreaterThanOrEqualTo(DateTime.Now.AddDays(-1));

ResourceCollection<Transaction> results = gateway.Transaction.Search(searchRequest);

Dispute date rangeanchor

  1. C#
var searchRequest = new TransactionSearchRequest().
    DisputeDate.GreaterThanOrEqualTo(DateTime.Now.AddDays(-1));

ResourceCollection<Transaction> results = gateway.Transaction.Search(searchRequest);
note

Time zones specified in the time value will be respected in the search; if you do not specify a time zone, the search will default to the time zone associated with your gateway account. Results will always be returned with time values in UTC.

See also