vk_put_tasks_25d391326d4f
Upload attachments to a Vikunja task by passing multipart form data with files, each containing filename and contentBase64.
Instructions
Upload a task attachment. Raw Vikunja REST proxy for PUT /tasks/{id}/attachments. Upload a task attachment. You can pass multiple files with the files form param. Pass multipart form data in the form field. File values use an object with filename, contentBase64 and optional contentType. Multi-file fields accept arrays. Path and query parameters are top-level fields. Original parameter names also accept camelCase and snake_case aliases. Form fields: files. Required: files. Authentication is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Task ID Required. | |
| form | Yes | Multipart form data fields: files (string, required). Use file objects shaped like { filename, contentBase64, contentType? }. Non-file objects are JSON-stringified before upload. |