Actions26
- Collections Actions
- Records Actions
- Fields Actions
- Chats Actions
- Files Actions
- User Contacts Actions
- Triggers Actions
Overview
This node allows you to create a new field within a specified collection in Cogfy Tables. It is useful when you want to dynamically extend the schema of your data collections by adding custom fields of various types such as text, number, boolean, date, email, URL, or JSON. For example, you might use this node to add a "Customer Email" field of type email to a customer records collection or a "Signup Date" field of type date.
Properties
| Name | Meaning |
|---|---|
| Collection Id | The unique identifier of the collection where the new field will be created. |
| Name | The name of the new field to be created. |
| Type | The data type of the new field. Options include: Text, Number, Boolean, Date, Email, Url, Json |
Output
The node outputs JSON data representing the newly created field object as returned by the Cogfy Tables API. This typically includes details such as the field's ID, name, type, and any other metadata provided by the API.
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 uses HTTP requests with JSON payloads to interact with the Cogfy Tables service.
Troubleshooting
- Missing or invalid Collection Id: Ensure that the Collection Id provided exists and is correctly formatted.
- Invalid field type: Use one of the supported types listed in the Type property; otherwise, the API may reject the request.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- API connectivity issues: Check network access and the correctness of the base URL configuration.
Links and References
- Cogfy Tables API Documentation (hypothetical link)
- n8n documentation on creating custom nodes