create_record
Generate a new record in a datasheet by extracting key information from user input. Convert provided text into a JSON object based on a predefined schema for structured data storage.
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. |