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 retrieve a specific record from a collection. It is useful when you need to fetch detailed information about a single record stored in a particular collection within Cogfy Tables. Common scenarios include retrieving user data, product details, or any entity stored as a record in a collection for further processing or display.
For example, if you have a collection of customer orders, this node can be used to get the details of a specific order by its record ID.
Properties
| Name | Meaning |
|---|---|
| Collection Id | The unique identifier of the collection from which to retrieve the record. |
| Record Id | The unique identifier of the record to retrieve from the specified collection. |
Output
The output contains a JSON object representing the retrieved record's data fields and their values as stored in the Cogfy Tables collection. This includes all properties of the record as returned by the API.
If the node supports binary data (not indicated in the provided code), it would typically represent file attachments or media associated with the record, but no such indication is present here.
Dependencies
- Requires an active connection to the Cogfy Tables API.
- Needs an API authentication token or key configured in the node credentials to authorize requests.
- The base URL for the API must be set in the node credentials.
Troubleshooting
- Missing or invalid Collection Id or Record Id: Ensure both IDs are correctly provided and correspond to existing entities in Cogfy Tables.
- Authentication errors: Verify that the API key or token is valid and has sufficient permissions.
- Network issues: Check connectivity to the Cogfy Tables API endpoint.
- Record not found: If the specified record ID does not exist in the collection, the API will return an error; confirm the record ID is correct.
Links and References
- Cogfy Tables API Documentation (example placeholder link)
- n8n documentation on creating custom nodes