deals_list_files
Retrieve all files attached to a deal, including names, sizes, upload dates, and download URLs. Supports pagination and sorting.
Instructions
List all files attached to a deal.
Returns all files associated with this deal.
Workflow tips:
Shows file names, sizes, and upload dates
Includes download URLs for each file
Paginated for deals with many files
Cached for 5 minutes
Common use cases:
List all files: { "id": 123 }
Paginated list: { "id": 123, "start": 0, "limit": 50 }
Sorted by date: { "id": 123, "sort": "add_time" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the deal | |
| start | No | Pagination start | |
| limit | No | Number of items to return | |
| sort | No | Field to sort by (e.g., add_time, file_name) |