Actions26
- Collections Actions
- Records Actions
- Fields Actions
- Chats Actions
- Files Actions
- User Contacts Actions
- Triggers Actions
Overview
This node interacts with the Cogfy Tables API to list collections. It retrieves a paginated list of collections from the service, allowing users to specify which page and how many results per page they want to fetch. This is useful for workflows that need to process or display metadata about available collections in Cogfy Tables, such as dynamically generating UI elements, syncing collection lists, or auditing collection structures.
Example use cases:
- Fetching all collections in batches to synchronize them with another system.
- Displaying a selectable list of collections in a user interface.
- Automating reports or audits on collections stored in Cogfy Tables.
Properties
| Name | Meaning |
|---|---|
| Page Number | The page number to retrieve. Starts at 0. Defaults to 0. |
| Page Size | The number of results per page. Defaults to 10. |
Output
The node outputs JSON data representing the list of collections retrieved from the Cogfy Tables API. Each item in the output corresponds to a collection object as returned by the API. The structure typically includes collection metadata such as collection ID, name, description, and other relevant fields defined by the API.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Cogfy Tables API.
- The base URL for the API must be configured in the node credentials.
- The node depends on the
@amonlibanio/n8n-openapi-nodepackage for OpenAPI integration.
Troubleshooting
Common issues:
- Incorrect or missing API credentials will cause authentication failures.
- Invalid page number or page size values may result in empty responses or errors.
- Network connectivity problems can prevent the node from reaching the API endpoint.
Error messages:
- Authentication errors usually indicate invalid or expired API keys; verify and update credentials.
- HTTP 4xx or 5xx errors suggest issues with request parameters or server availability; check the input properties and API status.
- Timeout errors may require increasing timeout settings or checking network stability.
Links and References
- Cogfy Tables API Documentation (hypothetical link)
- n8n OpenAPI Node Integration