Active with remarks |
---|
This application needs additional settings. Please follow the documentation below to create your own connectionUnique, active service acces point to a network. There are different types of connections (API key, Oauth…).. |
The Braintree modulesa module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. allow you to watch, create, update, and delete the customers in your Braintree account.
Prerequisites
-
A Braintree account
In order to use Braintree with Boost.spaceA platform that centralizes and synchronizes company data from internal and external sources, offering a suite of modules and addons for project management, CRM, data visualization, and more. Has many features to optimize your workflow! IntegratorPart of the Boost.space system, where you can create your connections and automate your processes., it is necessary to have a Braintree account. If you do not have one, you can create a Braintree Sandbox account at braintreepayments.com/sandbox.
Note | |
---|---|
The modulea module is an application or tool designed to handle specific business functions, such as CRM, project management, or inventory. The system's modular architecture allows you to activate only the modules you need, enabling customization and scalability as your business requirements evolve. dialog fields that are displayed in bold (in the Boost.space Integrator scenarioA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive., not in this documentation article) are mandatory! |
To connect your Braintree account to Boost.space Integrator you need to obtain the API Key from your Braintree account and insert it in the Create a connection dialog in the Boost.space Integrator module.
1. Log in to your Braintree account.
2. Click Your Profile Icon> My User > View Authorizations.
3. Copy the Public Key and Private Key to your clipboard.
4. Go to Boost.space Integrator and open the Braintree module’s Create a connection dialog.
5. In the Connection name field, enter a name for the connection.
6. In the Environment field, select the required environment.
7. In the Public Key and Private Key fields, enter the public key and private key copied in step 3. Click Continue.
The connection has been established.
Watches for new transactions.
Connection |
|
Limit |
Set the maximum number of new transactions Boost.space Integrator should return during one scenario execution cycleA cycle is the operation and commit/rollback phases of scenario execution. A scenario may have one or more cycles (one is the default).. |
Retrieves a translation.
Connection |
|
Transaction ID |
Select the Transaction ID whose details you want to retrieve. |
Searches for transactions.
Connection |
|
Transaction ID |
Select the Transaction ID you want to search. |
StatusIn Boost.space, statuses are indicators assigned to records within modules to represent their current state or progress. They can be system-defined, such as "Active" or "Done," or custom-created to fit specific workflows. Statuses help track and manage tasks, projects, and processes efficiently. |
Select the status of the transaction. For example, Failed. |
Customer ID |
Select the Customer ID whose transactions you want to search. |
Payment Method Snapshot Type |
Select the payment method snapshot type for searching only those transactions. |
Source |
Select the source type of the transactions. |
Filter |
Select the filter to search the transactions. |
Limit |
Set the maximum number of transactions Boost.space Integrator should return during one scenario execution cycle. |
Watches for new customers.
Connection |
|
Limit |
Set the maximum number of new customers Boost.space Integrator should return during one scenario execution cycle. |
Retrieves a customer.
Connection |
|
Customer ID |
Select the Customer ID whose details you want to retrieve. |
Searches for customers.
Connection |
|
Customer ID |
Select the Customer ID whose details you are searching for. |
Date of Creation |
Select the date on which the customer account is created to search only those customers. |
Filter |
Select the filters to search only those customers based on the specified criteria. |
Limit |
Set the maximum number of new transactions Boost.space Integrator should return during one scenario execution cycle. |
Creates a new customer.
Connection |
|
|
Enter the email address of the customer. |
First Name |
Enter the first name of the customer. |
Last Name |
Enter the last name of the customer. |
Company |
Enter the company name to which the customer belongs. |
Phone Number |
Enter the phone number of the customer. |
Updates a customer.
Connection |
|
Customer ID |
Select the Customer ID whose details you want to update. |
|
Enter the email address of the customer. |
First Name |
Enter the first name of the customer. |
Last Name |
Enter the last name of the customer. |
Company |
Enter the company name to which the customer belongs to. |
Phone Number |
Enter the phone number of the customer. |
Deletes a customer.
Connection |
|
Customer ID |
Select the Customer ID you want to delete. |
Performs an arbitrary authorized GraphQL query.
Braintree uses GraphQL for Managing the APIs. See BraintreePayment GraphQL Documentation.
Connection |
|
Query |
Enter the query in JSON format. |
Variables Data |
Select the variable data source type:
|
Variables |
Add the variables: Key Enter the Key details in JSON format. Value Enter the key value in JSON format. |
The following GraphQL query returns all the customers from your Braintree Payments account:
Method: POST
Query:
query Search($input: CustomerSearchInput!) { search { customers(input: $input, first: 50) { pageInfo { endCursor hasNextPage } edges { node { id legacyId createdAt company email firstName lastName phoneNumber } } } } }
Variables:
{"input": {"createdAt": {"lessThanOrEqualTo":"2020-07-15T07:07:49+02:00"}}}
Matches of the search can be found in the module’s Output under BundleA bundle is a chunk of data and the basic unit for use with modules. A bundle consists of items, similar to how a bag may contain separate, individual items. > Body > data. In our example, 5 customers were returned: