cURL
curl --request PUT \ --url http://localhost:8091/api/attachments/upload/{uploadID} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form file='@example-file'
{ "data": { "uploadId": "<string>", "filename": "<string>", "mimeType": "<string>", "sizeBytes": 123 } }
Uploads the actual file content for a previously presigned upload.
Session token obtained from /api/auth/login or /api/auth/register. Pass as: Authorization: Bearer
Upload ID from presign response
File content
File uploaded
Show child attributes