Cogfy Tables icon

Cogfy Tables

Interact with Cogfy Tables API for collections, records, and fields management

Overview

This node allows you to create a new record in a specified collection within the Cogfy Tables system. It is useful when you want to programmatically add data entries to a database or table managed by Cogfy Tables. For example, you might use this node to insert customer information, inventory items, or any structured data into a collection during an automated workflow.

Properties

Name Meaning
Collection Id The unique identifier of the collection where the new record will be created.
Properties A JSON object representing the fields and their values for the new record. Each key is a field ID, and its value is the corresponding field value to set in the record.

Output

The node outputs the newly created record as a JSON object in the json output field. This object contains the data of the record that was just created, including all fields and their values as stored in the collection.

Dependencies

  • Requires an API key credential to authenticate with the Cogfy Tables API.
  • Needs the base URL of the Cogfy Tables API configured in the credentials.
  • Depends on the external Cogfy Tables service to manage collections and records.

Troubleshooting

  • Invalid Collection Id: If the collection ID does not exist or is incorrect, the node will fail to create the record. Verify the collection ID is correct.
  • Malformed Properties JSON: The properties input must be a valid JSON object. Errors in JSON syntax will cause failures. Use proper JSON formatting.
  • Authentication Errors: Ensure the API key credential is valid and has permissions to create records in the target collection.
  • API Connectivity Issues: Network problems or incorrect base URL configuration can prevent communication with the Cogfy Tables API.

Links and References

Discussion