Actions100
- Activity Actions
- Asset Actions
- Authentication Actions
- Collection Actions
- Extension Actions
- Field Actions
- File Actions
- Folder Actions
- Item Actions
- Permission Actions
- Preset Actions
- Relation Actions
- Revision Actions
- Role Actions
- Setting Actions
- User Actions
- Utility Actions
Overview
This node is designed to interact with an authentication-related resource, specifically to list authentication entries or tokens. It is useful in scenarios where you need to retrieve and manage authentication data from a service, such as listing all active sessions, API keys, or user tokens. For example, it can be used to audit current authentications or to display them for administrative purposes.
Properties
Name | Meaning |
---|---|
Split Into Items | Whether to output each element of an array as its own individual item (true/false). |
Output
The node outputs JSON data representing the list of authentication entries retrieved. If the "Split Into Items" property is set to true, each element of the returned array will be output as a separate item, allowing downstream nodes to process each authentication entry individually. Otherwise, the entire array is output as a single item.
No binary data output is indicated by the source code.
Dependencies
- The node depends on external methods and routing logic imported from bundled dependencies (
./methods
and./actions/router
). - It requires proper configuration of API credentials or authentication tokens to access the authentication resource.
- No explicit environment variables are mentioned, but typical usage would require setting up an API key or token credential within n8n.
Troubleshooting
Common issues:
- Failure to authenticate due to missing or invalid API credentials.
- Receiving empty lists if there are no authentication entries available.
- Misconfiguration of the "Split Into Items" property leading to unexpected output structure.
Error messages:
- Authentication errors typically indicate invalid or missing credentials; ensure that the API key or token is correctly configured.
- Network or permission errors may occur if the service endpoint is unreachable or the user lacks necessary permissions.
Links and References
- Refer to the API documentation of the service providing the authentication resource for details on authentication entries and their structure.
- n8n documentation on handling arrays and splitting items for better understanding of the "Split Into Items" property.