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 "Add Amount to Card" operation in the Boomerangme node allows users to increase a numeric value associated with a specific card. This is useful in scenarios such as adding monetary credit, points, or any other quantifiable metric tracked on a card within a loyalty or rewards program. For example, a business could use this operation to add a purchase amount to a customer's digital card balance or to increment reward points after a transaction.
Properties
| Name | Meaning |
|---|---|
| Card ID | The unique identifier of the card to which the amount will be added. |
| Amount | The numeric value to add to the card's current amount. |
| Comment | An optional text note or description explaining the reason for adding the amount. |
Output
The node outputs JSON data representing the result of the API call to add the specified amount to the card. This typically includes confirmation details such as the updated card state, new balance or amount, and any metadata returned by the Boomerangme API. The output does not include binary data.
Dependencies
- Requires an active API key credential for authenticating requests to the Boomerangme API.
- The node communicates with the Boomerangme API endpoint at
https://api.digitalwallet.cards/api/v2. - Proper configuration of the API credential in n8n is necessary for successful execution.
Troubleshooting
- Invalid Card ID: If the provided Card ID does not exist or is malformed, the API may return an error indicating the card was not found. Verify the Card ID before running the node.
- Insufficient Permissions: Errors related to authentication or authorization usually mean the API key lacks required permissions. Ensure the API key is valid and has rights to modify card data.
- Amount Not a Number: Providing a non-numeric value for the Amount property will cause validation errors. Confirm that the Amount is a valid number.
- Network Issues: Connectivity problems can lead to request failures. Check network access and API availability.
- API Rate Limits: Excessive requests might trigger rate limiting; handle such errors by retrying after some delay.
Links and References
- Boomerangme API Documentation (general reference for API endpoints and usage)
- n8n Documentation on Creating Custom Nodes