Search transactions
braintree_search_transactionsSearch transactions by created-at date range, status, and/or customer. Builds a TransactionSearchInput (operators: status in, createdAt greaterThanOrEqualTo/lessThanOrEqualTo, customer.id is). Returns a page of transaction nodes (id, legacyId, amount, status, createdAt). GraphQL search { transactions }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first | No | Max transactions to return (page size). Default 25. | |
| status | No | One or more transaction statuses to match (e.g. ["SETTLED","VOIDED"]). | |
| customerId | No | GraphQL global Customer ID to filter to one customer's transactions. | |
| createdAfter | No | Only transactions created at or after this ISO-8601 timestamp. | |
| createdBefore | No | Only transactions created at or before this ISO-8601 timestamp. |