Actions24
- Tag Actions
- Provider Link Actions
- Computer Actions
- Maintenance Actions
- Person Actions
- Tenant Actions
- User Actions
Overview
The node is designed to interact with the ImmyBot API, specifically to retrieve information about a user by their User ID. It is useful in scenarios where you need to fetch detailed data about a specific user from the ImmyBot system, such as for user management, reporting, or integration with other systems.
For example, you might use this node to:
- Retrieve profile details of a user to display in a dashboard.
- Fetch user data before performing updates or sending notifications.
- Integrate user information into CRM or support tools.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID number of the user to retrieve |
Output
The node outputs JSON data representing the user details retrieved from the ImmyBot API. This typically includes all available fields related to the user identified by the provided User ID. The exact structure depends on the API response but generally contains user attributes such as name, email, status, and other profile information.
If the node supports binary data output (not indicated here), it would represent any files or media associated with the user, but based on the provided code and properties, the output is purely JSON.
Dependencies
- Requires an API authentication token configured via OAuth2 credentials for ImmyBot.
- Needs the subdomain credential value to construct the base URL for API requests.
- The node depends on the ImmyBot API being accessible at
https://{subdomain}.immy.bot/api/v1.
Troubleshooting
- Invalid User ID: If the User ID does not exist or is incorrect, the API may return an error or empty result. Verify the User ID is correct.
- Authentication Errors: Missing or invalid OAuth2 credentials will cause authentication failures. Ensure the API key/token is correctly set up.
- Network Issues: Connectivity problems to the ImmyBot API endpoint can cause request failures. Check network access and subdomain correctness.
- API Changes: If the ImmyBot API changes its endpoints or response format, the node may fail or produce unexpected results. Keep the node and API documentation updated.
Links and References
- ImmyBot API Documentation (hypothetical link)
- OAuth2 Authentication setup guides in n8n documentation
- General n8n node development docs for custom API integrations