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 Customers, Cards, Companies, and SMS. For the "Card" resource with the "Get Card" operation, it retrieves detailed information about a specific card by its unique identifier. This is useful in scenarios where you need to fetch card details for verification, display, or further processing within an automation workflow.
Practical examples include:
- Retrieving card details to display in a CRM system.
- Validating card information before performing transactions.
- Fetching card data to trigger notifications or updates.
Properties
| Name | Meaning |
|---|---|
| Card ID | The unique identifier of the card to retrieve. This is a required string input. |
Output
The node outputs JSON data containing the details of the requested card. The structure typically includes all relevant card attributes as returned by the Boomerangme API, such as card number, status, owner information, expiration date, and other metadata.
If the node supports binary data output (not indicated here), it would represent any associated files or media related to the card, but this is not evident from the provided code.
Dependencies
- Requires an active connection to the Boomerangme API.
- Needs an API authentication token configured in n8n credentials to authorize requests.
- The base URL for API requests is
https://api.digitalwallet.cards/api/v2.
Troubleshooting
- Missing or invalid Card ID: Ensure that the Card ID property is provided and correctly formatted; otherwise, the API will return an error.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network issues: Check connectivity to the Boomerangme API endpoint.
- API rate limits or downtime: If requests fail repeatedly, confirm if the API service is operational and that usage limits have not been exceeded.
Links and References
- Boomerangme API Documentation (hypothetical link, replace with actual if available)
- n8n documentation on creating custom nodes