create_record
Add new records to a datasheet by extracting and structuring key information from provided text. Use the Fields JSON Schema to ensure data adheres to the required format and create JSON objects for seamless integration.
Instructions
Create a new record in the datasheet. Extract key information from user-provided text based on a predefined Fields JSON Schema and create a new record in the datasheet as a JSON object.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachments_fields | No | A JSON object containing Attachment type field data. Keys represent field names and values are arrays of attachment objects. The structure of attachment objects must conform to the Fields JSON Schema provided by the "get_fields_schema" tool. You need to use the "upload_file_via_url" tool to obtain the attachment objects. | |
fields | Yes | A JSON object containing non-Attachment type field data. Keys represent field names and values represent field values. Omit unspecified fields in the API request. The structure of field values must conform to the Fields JSON Schema provided by the "get_fields_schema" tool. | |
node_id | Yes | The ID of the datasheet where the new record will be created. |