Actions23
- Customer Actions
- Card Actions
- Add Amount to Card
- Add Point to Card
- Add Reward to Card
- Add Scores to Card
- Add Stamp to Card
- Add Visit to Card
- Create Card
- Delete Card
- Get Card
- List of Cards
- Receive Reward
- Redeem Coupon
- Subtract Amount From Card
- Subtract Point From Card
- Subtract Reward From Card
- Subtract Scores From Card
- Subtract Stamp From Card
- Subtract Visit From Card
- Company Actions
- SMS Actions
Overview
The node interacts with the Boomerangme API, specifically allowing operations on various resources such as Customer, Card, Company, and SMS. For the Customer resource with the List operation, it fetches a list of customers from the Boomerangme service. This is useful for scenarios where you want to retrieve customer data filtered by specific criteria like phone number or email address.
Practical examples include:
- Retrieving all customers who have a particular phone number.
- Fetching customers filtered by their email addresses for marketing or support purposes.
Properties
| Name | Meaning |
|---|---|
| Phone | Filter the list of customers by phone number (string input). |
| Filter the list of customers by email address (string input). |
These properties allow you to narrow down the list of customers returned by the API based on phone or email filters.
Output
The node outputs JSON data representing the list of customers retrieved from the Boomerangme API. Each item in the output corresponds to a customer object containing details as provided by the API.
If binary data were involved, it would be summarized here, but this operation deals only with JSON customer data.
Dependencies
- Requires an API key credential for authenticating with the Boomerangme API.
- The base URL used for requests is
https://api.digitalwallet.cards/api/v2. - Proper configuration of the API authentication credential within n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Providing invalid filter values (e.g., malformed email) may result in no data or errors.
- Network connectivity issues can prevent successful API calls.
Error messages:
- Authentication errors typically indicate problems with the API key; verify that the correct key is configured.
- Validation errors may occur if filter parameters do not meet expected formats; ensure phone and email inputs are valid.
- Timeout or connection errors suggest network problems; check your internet connection and API availability.
Links and References
- Boomerangme API Documentation (assumed official docs for further API details)
- n8n documentation on API Credentials for setting up authentication tokens