English
Appearance
Completes a multipart upload for a comment attachment.
Only the user who started the upload can complete it.
Endpoint not callable from CLI
The CLI does not expose direct comment attachment upload commands. Use the SDK helper or call the HTTP endpoint directly.
await client.commentAttachments.completeUpload("CA1234567890ABCD", { parts: [{ partNumber: 1, eTag: "etag-1" }], });
curl -X POST 'https://api.youvico.com/api/comment-attachments/CA1234567890ABCD/upload.complete' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "parts": [{ "partNumber": 1, "eTag": "etag-1" }] }'
id
string
parts
array
At least 1 item
parts[].partNumber
number
1 or greater
Example: 1
1
parts[].eTag
1-255 characters
Example: etag-1
etag-1
Returns 204 No Content.
204 No Content
Complete Comment Attachment Upload Tier 4
Completes a multipart upload for a comment attachment.
Only the user who started the upload can complete it.
Endpoint not callable from CLI
The CLI does not expose direct comment attachment upload commands. Use the SDK helper or call the HTTP endpoint directly.
Example
Request
Path
idstringrequiredBody
partsarrayrequiredAt least 1 item
parts[].partNumbernumberrequired1 or greater
Example:
1parts[].eTagstringrequired1-255 characters
Example:
etag-1Response
Returns
204 No Content.