files_update
Update the name or description of a file in Pipedrive without modifying its content.
Instructions
Update file metadata (name or description).
Updates a file's name or description. Does not modify the actual file content.
Workflow tips:
Can update file name (without extension) or description
Name must not exceed 255 characters
Description limited to 1000 characters
At least one field (name or description) should be provided
Common use cases:
Rename file: { "id": 123, "name": "Updated Contract" }
Add description: { "id": 123, "description": "Q4 2024 sales contract" }
Update both: { "id": 123, "name": "Contract V2", "description": "Updated terms" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the file to update | |
| name | No | New name for the file (max 255 chars) | |
| description | No | Description of the file (max 1000 chars) |