Actions47
- Template Actions
- Communication Actions
- Card Actions
- Create
- Get
- Get All
- Update
- Delete
- Get Balance
- Add Points
- Deduct Points
- Add Amount
- Deduct Amount
- Add Stamps
- Deduct Stamps
- Transfer Points
- Transfer Amount
- Block Card
- Unblock Card
- Generate QR Code
- Get Operations
- Add Visits
- Deduct Visits
- Add Reward
- Deduct Reward
- Receive Reward
- Redeem Coupon
- Set Expiration Date
- Set Membership Tier
- Customer Actions
- Company Actions
- Analytics Actions
- System Actions
Overview
This node interacts with a Digital Wallet Cards loyalty program API, specifically managing companies, cards, customers, templates, communications, analytics, and system operations. For the Company - Get operation, it retrieves detailed information about a specific company by its ID.
Typical use cases include:
- Fetching company details to display or process within an automation workflow.
- Integrating company data retrieval into customer relationship management or reporting systems.
- Automating updates or validations based on company information.
Example: You want to get the details of a company with ID 123 to verify its metadata before processing transactions related to that company.
Properties
| Name | Meaning |
|---|---|
| Company ID | The unique numeric identifier of the company to retrieve. |
Output
The output is a JSON object representing the company details as returned by the API. It typically includes fields such as:
id: The company ID.name: The company name.description: A textual description of the company.website: URL of the company's website.logo: URL to the company's logo image.metadata: Additional metadata associated with the company (usually a JSON object).- Other fields as provided by the API response.
The output is structured as a single item in the node's output array, suitable for further processing or routing in n8n workflows.
Dependencies
- Requires an API key credential configured in n8n to authenticate requests to the Digital Wallet Cards API.
- The node uses HTTP requests to the base URL
https://api.digitalwallet.cards. - No additional external dependencies are required beyond the API access.
Troubleshooting
- Missing or invalid Company ID: The operation requires a valid numeric company ID. Ensure this property is set and correctly typed.
- API authentication errors: Verify that the API key credential is properly configured and has sufficient permissions.
- Network issues or API downtime: Check connectivity and the status of the Digital Wallet Cards API service.
- Unexpected API responses: If the company ID does not exist, the API may return an error; handle such cases gracefully in your workflow.
- JSON parsing errors: Metadata fields are parsed from JSON strings; ensure any custom metadata input is valid JSON.
Links and References
- Digital Wallet Cards API Documentation (hypothetical link)
- n8n documentation on Creating Custom Nodes
- General REST API usage best practices