deals_attach_file
Attach a file to a Pipedrive deal using its local path. Supports PDF, DOC, images; file becomes part of the deal's audit trail.
Instructions
Attach a file to a deal.
Uploads and attaches a file to the deal. Useful for contracts, proposals, presentations, etc.
Workflow tips:
Provide absolute file path on the local system
File will be uploaded to Pipedrive
Supports common formats: PDF, DOC, XLS, images, etc.
File becomes part of the deal's audit trail
Common use cases:
Attach contract: { "id": 123, "file_path": "/path/to/contract.pdf" }
Attach proposal: { "id": 456, "file_path": "/path/to/proposal.docx" }
Attach image: { "id": 789, "file_path": "/path/to/diagram.png" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the deal | |
| file_path | Yes | Absolute path to the file to attach |