Actions24
- Tag Actions
- Provider Link Actions
- Computer Actions
- Maintenance Actions
- Person Actions
- Tenant Actions
- User Actions
Overview
The "Get Tag" operation in the ImmyBot node allows users to retrieve information about a specific tag from the ImmyBot service. Users can filter the tag either by its unique ID or by its name. This operation is useful when you need to fetch details of a particular tag for further processing, such as organizing data, filtering content, or integrating tag metadata into workflows.
Practical examples include:
- Fetching a tag's details by its ID to display or log tag information.
- Retrieving a tag by name to check if it exists before creating or updating related records.
Properties
| Name | Meaning |
|---|---|
| Filter Type | Choose whether to filter the tag by its ID or by its Name. Options: By ID, By Name. |
| ID | The unique identifier of the tag to retrieve. Required if filtering by ID. |
| Name | The name of the tag to retrieve. Required if filtering by name. |
Output
The node outputs JSON data representing the tag's details retrieved from the ImmyBot API. The exact structure depends on the API response but typically includes fields such as tag ID, name, and any associated metadata.
If the node supports binary data output (not indicated here), it would represent any file or media content related to the tag, but this operation primarily deals with JSON data.
Dependencies
- Requires an API authentication token configured via OAuth2 credentials for ImmyBot.
- Needs the ImmyBot subdomain specified in the credentials to construct the base URL for API requests.
Troubleshooting
Common issues:
- Providing an incorrect or missing tag ID or name will result in no data found or an error response.
- Invalid or expired API credentials will cause authentication failures.
- Network connectivity problems may prevent reaching the ImmyBot API endpoint.
Error messages:
- "Tag not found": Verify that the provided ID or name is correct and exists in the system.
- "Authentication failed": Check that the API credentials are valid and have not expired.
- "Network error": Ensure your environment has internet access and the ImmyBot service is reachable.
Links and References
- ImmyBot API Documentation (hypothetical link)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/