generated from camel.apache.org/component
2
Home
gitea_admin edited this page 2026-03-11 14:36:25 +00:00
Table of Contents
Braintree
Process payments using Braintree Payments.
Metadata
| Property | Value |
|---|---|
| Scheme | braintree |
| Support Level | Stable |
| Labels | saas |
| Version | 4.10.2 |
Maven Dependency
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-braintree</artifactId>
<version>4.10.2</version>
</dependency>
Endpoint Properties
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
apiName |
object | ✓ | What kind of operation to perform | |
methodName |
string | ✓ | What sub operation to use for the selected operation | |
environment |
string | The environment Either SANDBOX or PRODUCTION | ||
inBody |
string | Sets the name of a parameter to be passed in the exchange In Body | ||
merchantId |
string | The merchant id provided by Braintree. | ||
lazyStartProducer |
boolean | false |
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | |
httpReadTimeout |
integer | Set read timeout for http calls. | ||
httpLogLevel |
string | Set logging level for http calls, see java.util.logging.Level | ||
httpLogName |
string | Braintree |
Set log category to use to log http calls. | |
logHandlerEnabled |
boolean | true |
Sets whether to enable the BraintreeLogHandler. It may be desirable to set this to 'false' where an existing JUL - SLF4J logger bridge is on the classpath. This option can also be configured globally on the BraintreeComponent. | |
proxyHost |
string | The proxy host | ||
proxyPort |
integer | The proxy port | ||
accessToken |
string | The access token granted by a merchant to another in order to process transactions on their behalf. Used in place of environment, merchant id, public key and private key fields. | ||
privateKey |
string | The private key provided by Braintree. | ||
publicKey |
string | The public key provided by Braintree. |