upload_attachment_via_url
Upload files to the AITable server using a web URL. Store file data for attaching to specific records via create_record or update_record tools.
Instructions
Upload an attachment to the AITable server using its web URL. Returns storage information that can be passed to create_record or update_record tools to associate with a specific records.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment_name | No | Optional custom name for the attachment after upload. | |
attachment_url | Yes | The complete web URL of the file to be uploaded. | |
node_id | Yes | The ID of the datasheet where the attachment will be attached after upload. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attachment_name": {
"description": "Optional custom name for the attachment after upload.",
"type": "string"
},
"attachment_url": {
"description": "The complete web URL of the file to be uploaded.",
"type": "string"
},
"node_id": {
"description": "The ID of the datasheet where the attachment will be attached after upload.",
"type": "string"
}
},
"required": [
"node_id",
"attachment_url"
],
"type": "object"
}